Skip to content

Commit

Permalink
Rename some things
Browse files Browse the repository at this point in the history
  • Loading branch information
wildjames committed Nov 24, 2024
1 parent f8a7d68 commit 9e0ef55
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ install:
# Install frontend dependencies
cd todoqueue_frontend && npm install

dev:
./run_dev.sh
dev-frontend:
cd todoqueue_frontend && npm start

dev-backend:
cd todoqueue_backend && python3 manage.py runserver

build:
# Build the React frontend
cd todoqueue_frontend && npm run build
# Collect static files for Django
cd todoqueue_backend && python manage.py collectstatic --noinput
cd todoqueue_backend && python3 manage.py collectstatic --noinput
# Build the Docker image
docker build -t todoqueue:latest .

Expand Down
File renamed without changes.

0 comments on commit 9e0ef55

Please sign in to comment.