Toggle navigation
Toggle navigation
This project
Loading...
Sign in
teamPARK
/
holiday-counter-recommend-activity
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박종현
2022-06-05 18:24:09 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
e4c0b067c93415c4cb51b3885e853b715d8beeba
e4c0b067
2 parents
c844a674
7f43fd10
Fix merge error
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
nodejs/.gitignore
nodejs/server.js
nodejs/views/data.ejs
nodejs/.gitignore
View file @
e4c0b06
<<<<<<< HEAD
node_modules/
package-lock.json
=======
node_modules/
package-lock.json
>>>>>>> feature/recommend-activity
.env
\ No newline at end of file
...
...
nodejs/server.js
View file @
e4c0b06
...
...
@@ -36,8 +36,12 @@ function getTodayDate() {
var
month
=
(
"0"
+
(
today
.
getMonth
()
+
1
)).
slice
(
-
2
);
var
day
=
(
"0"
+
today
.
getDate
()).
slice
(
-
2
);
var
dateString
=
year
+
"-"
+
month
+
"-"
+
day
;
<<<<<<<
HEAD
//return "2022-12-25"; // 테스트용 날짜를 입력하세요. *** 테스트가 끝나면 주석처리하고 커밋해주세요. *** ex) 2022-09-12, 2022-09-15, 2022-10-04
=======
// return "2023-01-01"; // 테스트용 날짜를 입력하세요. *** 테스트가 끝나면 주석처리하고 커밋해주세요. *** ex) 2022-09-12, 2022-09-15, 2022-10-04
>>>>>>>
7
f43fd101b38635257ae40eec3058e7997f954e5
return
dateString
;
}
...
...
nodejs/views/data.ejs
View file @
e4c0b06
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment