1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

chore: usage of GitHub flow instead of Git flow

This commit is contained in:
divlo
2021-04-20 19:47:57 +02:00
parent 8027e2deed
commit 3e18536c2e
7 changed files with 11803 additions and 5254 deletions

View File

@ -2,12 +2,12 @@ image: 'gitpod/workspace-full'
tasks:
- name: 'docker-daemon'
before: 'cp .env.example .env && npm install --global npm@7 && npm install'
init: 'sudo docker-up'
init: 'cp .env.example .env && npm install --global npm@7 && npm ci'
command: 'sudo docker-up'
- name: 'docker-container'
before: 'echo "Waiting for docker daemon to start" &&
init: 'echo "Waiting for docker daemon to start" &&
until docker info &> /dev/null; do sleep 1; done;'
init: 'docker-compose up'
command: 'docker-compose up'
ports:
- port: 3000