Created basic django server structure

This commit is contained in:
Clemens-Dautermann 2018-12-10 21:54:29 +01:00
parent d25bdd8a10
commit 0b31a83f83
15 changed files with 224 additions and 0 deletions

16
docker-compose.yml Normal file
View file

@ -0,0 +1,16 @@
version: '3'
services:
db:
image: postgres
ports:
- "5432:5432"
web:
build: ./invsystem
volumes:
- ./invsystem:/server
ports:
- "8000:8000"
depends_on:
- db
command: python3 manage.py runserver 0.0.0.0:8000