We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cad330f commit 61d1384Copy full SHA for 61d1384
.gitignore
@@ -117,6 +117,4 @@ dist
117
.yarn/build-state.yml
118
.pnp.*
119
120
-.idea/
121
-
122
-config.js
+.idea/
config.js
@@ -0,0 +1,10 @@
1
+exports.APP_NAME = 'backend';
2
+exports.MONGODB_URI = 'mongodb://127.0.0.1:27017/?readPreference=primary&appname=MongoDB%20Compass&ssl=false/backend';
3
+exports.JWT_SECRET = 'WhatIsMySecret???';
4
+
5
+exports.PASSWORD_HASH_SAIL = 12;
6
+exports.PASSWORD_MIN_LENGTH = 8;
7
+exports.TOKEN_EXPIRES_IN = '30d';
8
9
+exports.EMAIL = '[email protected]';
10
+exports.EMAIL_PASSWORD = 'kamalkrisna';
0 commit comments