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

This commit is contained in:
Dmitriy Shishkov 2020-10-20 03:09:19 +05:00
parent defcd64cba
commit cf57c80356
No known key found for this signature in database
GPG Key ID: D76D70029F55183E
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
}

@ -1 +1 @@
Subproject commit 2bcbc86a56be5e50a3081c6ce0599cb58fa73ee9
Subproject commit 3367930690e8fc86e680701fe7930e80cd377477

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:

@ -1 +1 @@
Subproject commit cc63aede25e1a0bae7f6b0db1cdcbbf9ec700a35
Subproject commit 6c60520aae4775c2c2275da1943d684e2bed0e4f

1416
yarn.lock

File diff suppressed because it is too large Load Diff