-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
40 lines (29 loc) · 793 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
all:
@echo "To setup a new development environment quickly, run: make quickstart"
@echo "For an optimal setup, see the README."
clone:
git clone https://github.com/taigaio/taiga-back.git
git clone https://github.com/taigaio/taiga-front-dist.git taiga-front
quickstart: clone setup
docker logs -f taiga-backend
run:
docker-compose up -d
build:
cp services/backend/image/Dockerfile taiga-back
docker-compose build
frontend_app:
cd taiga-front && yarn && gulp deploy
setup: build run
docker logs -f taiga-backend
stop:
docker-compose stop
clean:
docker-compose stop
docker-compose rm -v
remove_volumes:
docker volume rm taiga_postgres_data
docker volume rm taiga_taiga_backend_media
clean_all: clean remove_volumes
wipe: clean_all
rm -rf taiga-front
rm -rf taiga-back