Skip to content

Commit

Permalink
Merge pull request #44 from codescalersinternships/development_makefile
Browse files Browse the repository at this point in the history
update: make file client commands
  • Loading branch information
abdahmed22 authored Aug 8, 2024
2 parents c893c70 + 2a415c1 commit de4c54e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ endif
install:
$(server) && poetry install
$(server) && poetry check
$(client) && yarn
$(client) && pnpm install
runserver:
$(server) && $(CMD) python3 manage.py runserver
runclient:
$(client) && yarn && yarn dev
$(client) && pnpm run dev
test:
$(server) && $(CMD) python3 manage.py test
lint:
$(server) && $(CMD) black . --exclude=__init__.py
$(server) && $(CMD) flake8 . --exclude=__init__.py
$(client) && yarn lint
$(client) && pnpm run lint
migrate:
$(server) && $(CMD) python3 manage.py makemigrations
$(server) && $(CMD) python3 manage.py migrate
Expand Down

0 comments on commit de4c54e

Please sign in to comment.