Skip to content

Commit 39c793b

Browse files
committedOct 13, 2024
Fix Makefile paths
1 parent 58a624a commit 39c793b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ upgrade-all: ## Upgrade all Python packages
3838

3939
.PHONY: run
4040
run: ## Run the app
41-
python fakester/manage.py runserver
41+
python src/manage.py runserver
4242

4343
.PHONY: create-migration
4444
create-migration: ## Create Django migration (pass "name=<MIGRATION_NAME>")
45-
python fakester/manage.py makemigrations -n $(name)
45+
python src/manage.py makemigrations -n $(name)
4646

4747
.PHONY: apply-migrations
4848
apply-migrations: ## Apply Django migrations
49-
python fakester/manage.py migrate
49+
python src/manage.py migrateć
5050

5151
.PHONY: format
5252
format: ## Format code

0 commit comments

Comments
 (0)
Please sign in to comment.