Skip to content

Commit

Permalink
Repo init
Browse files Browse the repository at this point in the history
Signed-off-by: Divyanshu Sharma <anshu.bishops.2001@gmail.com>
  • Loading branch information
d1vshar committed Dec 23, 2020
0 parents commit d3c11ed
Show file tree
Hide file tree
Showing 5 changed files with 14,240 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Do not use this as env file. This is used to document required env variables.
# Make a copy:
# - ".dev.env" for development
# - ".env" for environment
# Don't commit these. Keep them local. (Already added to .gitignore)

# MongoDB URI
DB_URI=
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "airbnb"
}
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# deps
node_modules

# Env files. Don't commit these. make own.
*.env

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# DS_Store
.DS_Store

# editors/ide
.vscode
.idea
Loading

0 comments on commit d3c11ed

Please sign in to comment.