Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 73f963f

Browse files
Merge pull request #2 from developerplace/develop
Basic server configuration finished
2 parents 65337c2 + bbbc254 commit 73f963f

45 files changed

Lines changed: 344 additions & 3049 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,20 @@ APP_AUTHOR_URL="https://www.validation.global"
99
APP_URL="http://localhost"
1010
APP_PORT=3000
1111

12-
# Redis cache configuration
13-
APP_USE_CACHE="false"
12+
# Application session
13+
APP_SESSION_SECRET="MyStupidSecret"
14+
15+
# Redis configuration
16+
APP_USE_REDIS="false"
1417
APP_REDIS_HOST=""
1518
APP_REDIS_PORT=""
1619
APP_REDIS_PASSWORD=""
1720

1821
# MongoDB configuration
1922
APP_USE_MONGO="false"
20-
APP_USE_MONGO_CLUSTER="true"
21-
APP_MONGO_URL=""
22-
APP_MONGO_USERNAME=""
23-
APP_MONGO_PASSWORD=""
24-
APP_MONGO_PORT=""
25-
APP_MONGO_DATABASE=""
23+
APP_USE_MONGO_CLUSTER="false"
24+
APP_MONGO_URL="localhost"
25+
APP_MONGO_USERNAME="admin"
26+
APP_MONGO_PASSWORD="admin"
27+
APP_MONGO_PORT="27017"
28+
APP_MONGO_DATABASE="database"

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,7 @@ typings/
142142
.vscode-test/
143143
*.vsix
144144
/images/*.stg
145+
146+
# other
147+
dist
148+
docs

dist/app.d.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/app.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

dist/app.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/config/Api.d.ts

Lines changed: 0 additions & 20 deletions
This file was deleted.

dist/config/Api.js

Lines changed: 0 additions & 64 deletions
This file was deleted.

dist/config/Api.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/config/Database.d.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

dist/config/Database.js

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)