Skip to content

Commit 91481ef

Browse files
author
Helga
committed
[add] initial commit
0 parents  commit 91481ef

File tree

6 files changed

+645
-0
lines changed

6 files changed

+645
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
NodeJS Backend for Webix Scheduler
2+
=====================
3+
4+
### How to Start
5+
6+
```shell script
7+
npm install
8+
9+
npm start
10+
```
11+
12+

calendars.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[
2+
{
3+
"_id": "1",
4+
"text": "Personal",
5+
"color": "#997CEB",
6+
"active":1
7+
},
8+
{
9+
"_id": "2",
10+
"text": "Public",
11+
"color": "#01C2A5",
12+
"active":1
13+
},
14+
{
15+
"_id": "3",
16+
"text": "Birthdays",
17+
"color": "#D2FB9E",
18+
"active":0
19+
},
20+
{
21+
"_id": "4",
22+
"text": "Holidays",
23+
"color": "#F68896",
24+
"active":0
25+
}
26+
]

0 commit comments

Comments
 (0)