Skip to content

Commit

Permalink
✨ Feat: makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ilp-sys committed Apr 4, 2024
1 parent cf2ca57 commit 4b08832
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
working-directory: ./aeye
run: npm run build

- name: start the server
working-directory: ./aeye
run: npm run start
- name: start fe
run:
make up

14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
up:
docker compose up -d

down:
docker compose down

re:
docker-compose restart

logs:
docker compose logs

ps:
docker compose ps

0 comments on commit 4b08832

Please sign in to comment.