Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArtCanvas #54

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 2 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
Makefile
node_modules
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

build

npm-debug.log*
yarn-debug.log*
yarn-error.log*

package-lock.json
scripts/
1 change: 0 additions & 1 deletion Procfile

This file was deleted.

13 changes: 0 additions & 13 deletions README.md

This file was deleted.

5 changes: 0 additions & 5 deletions backend/.babelrc

This file was deleted.

7 changes: 7 additions & 0 deletions backend/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
SERVER_PORT=3000

DB_HOST=localhost
DB_PORT=27017
DB_USER=user
DB_PASS=pass
DB_NAME=chatdb
6 changes: 6 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.env*
!.env*.example
.DS_Store
node_modules
/build
public
8 changes: 0 additions & 8 deletions backend/README.md

This file was deleted.

Loading