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 16:31:31 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
0932aa374b948a614082f1cab8fd2e87f202e502
0932aa37
2 parents
4f7559d2
7d88ddf7
Merge feature/recommend-activity
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
nodejs/.gitignore
nodejs/server.js
nodejs/views/data.ejs
nodejs/.gitignore
View file @
0932aa3
<<<<<<< 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 @
0932aa3
...
...
@@ -36,8 +36,13 @@ function getTodayDate() {
var
month
=
(
"0"
+
(
today
.
getMonth
()
+
1
)).
slice
(
-
2
);
var
day
=
(
"0"
+
today
.
getDate
()).
slice
(
-
2
);
var
dateString
=
year
+
"-"
+
month
+
"-"
+
day
;
<<<<<<<
HEAD
return
"2023-01-01"
;
// 테스트용 날짜를 입력하세요. *** 테스트가 끝나면 주석처리하고 커밋해주세요. *** ex) 2022-09-12, 2022-09-15, 2022-10-04
//return dateString;
=======
//return "2022-12-25"; // 테스트용 날짜를 입력하세요. *** 테스트가 끝나면 주석처리하고 커밋해주세요. *** ex) 2022-09-12, 2022-09-15, 2022-10-04
return
dateString
;
>>>>>>>
feature
/
recommend
-
activity
}
// To get modified date from locdate
...
...
nodejs/views/data.ejs
View file @
0932aa3
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment