File tree Expand file tree Collapse file tree 3 files changed +98
-0
lines changed
Expand file tree Collapse file tree 3 files changed +98
-0
lines changed Original file line number Diff line number Diff line change 1+ APP_SECRET = ' top secret keyes'
2+ PORT = 3000
3+ MONGODB_URI = ' mongodb://localhost/cfgram-dev'
Original file line number Diff line number Diff line change 1+ {
2+ "rules": {
3+ "quotes": ["error", "single", { "allowTemplateLiterals": true }],
4+ "comma-dangle": ["error", "always-multiline"],
5+ "no-console": "off",
6+ "indent": [ "error", 2 ],
7+ "semi": ["error", "always"],
8+ "linebreak-style": [ "error", "unix" ]
9+ },
10+ "env": {
11+ "es6": true,
12+ "node": true,
13+ "mocha": true,
14+ "jasmine": true
15+ },
16+ "globals": {
17+ "__API_URI__": false,
18+ "__DEBUG__": false
19+ },
20+ "ecmaFeatures": {
21+ "modules": true,
22+ "experimentalObjectRestSpread": true,
23+ "impliedStrict": true
24+ },
25+ "extends": "eslint:recommended"
26+ }
Original file line number Diff line number Diff line change 1+ # Created by https://www.gitignore.io/api/osx,linux,node,vim
2+
3+ # ## OSX ###
4+ .DS_Store
5+ .AppleDouble
6+ .LSOverride
7+
8+ # ## Linux ###
9+ * ~
10+
11+ # temporary files which can be created if a process still has a handle open of a deleted file
12+ .fuse_hidden *
13+
14+ # KDE directory preferences
15+ .directory
16+
17+ # Linux trash folder which might appear on any partition or disk
18+ .Trash- *
19+
20+
21+ # ## Node ###
22+ # Logs
23+ logs
24+ * .log
25+ npm-debug.log *
26+
27+ # Runtime data
28+ pids
29+ * .pid
30+ * .seed
31+
32+ # Directory for instrumented libs generated by jscoverage/JSCover
33+ lib-cov
34+
35+ # Coverage directory used by tools like istanbul
36+ coverage
37+
38+ # node-waf configuration
39+ .lock-wscript
40+
41+ # Compiled binary addons (http://nodejs.org/api/addons.html)
42+ build /Release
43+
44+ # Dependency directories
45+ node_modules
46+ jspm_packages
47+
48+ # Optional npm cache directory
49+ .npm
50+
51+ # Optional REPL history
52+ .node_repl_history
53+
54+ # ## Vim ###
55+ # swap
56+ [._ ]* .s [a-w ][a-z ]
57+ [._ ]s [a-w ][a-z ]
58+ # session
59+ Session.vim
60+ # temporary
61+ .netrwhist
62+ * ~
63+
64+ # auto-generated tag files
65+ tags
66+
67+ DB
68+ db
69+ .env
You can’t perform that action at this time.
0 commit comments