Mise en place du projet

This commit is contained in:
2020-06-15 14:58:59 +02:00
parent ba01f8340e
commit bf3b56d242
10 changed files with 460 additions and 0 deletions

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
build:
docker-compose build
up: build
USER_ID=$(shell id -u) docker-compose up
sg:
docker-compose exec -u $(shell id -u) super-graph sh
sgr:
docker-compose run -u $(shell id -u) super-graph sh
down:
docker-compose down -v --remove-orphans
db-shell:
docker-compose exec postgres psql -Usupergraph