Added docker-compose file for development database, made public both frontend and backend repositories of project

This commit is contained in:
2020-10-20 03:09:19 +05:00
parent defcd64cba
commit cf57c80356
6 changed files with 819 additions and 617 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
POSTGRES_PASSWORD=supersecretpassword

View File

@@ -2,7 +2,7 @@
"tabWidth": 2,
"useTabs": false,
"semi": false,
"trailingComma": "none",
"trailingComma": "es5",
"printWidth": 80,
"singleQuote": true
}

Submodule backend updated: 2bcbc86a56...3367930690

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
version: '3'
services:
db:
image: 'postgres'
container_name: 'my_postgres'
env_file:
- .env
ports:
- '5432:5432'
volumes:
- my_data:/var/lib/postgresql/data
volumes:
my_data:

1416
yarn.lock

File diff suppressed because it is too large Load Diff