Skip to content
Snippets Groups Projects
Commit 7f88b7f7 authored by David Trattnig's avatar David Trattnig
Browse files

feat(Make): re-create db

parent 0bb4711b
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ help::
@echo " spell - check spelling of text"
@echo " format - apply automatic formatting"
@echo " test - run test suite"
@echo " recreatedb - drop and re-init the database"
@echo " log - tail log file"
@echo " run - start app"
$(call docker_help)
......@@ -85,6 +86,10 @@ format::
test::
poetry run python3 -m unittest discover .
recreatedb::
sudo -u postgres psql -f contrib/postgresql-drop-all.sql
sudo -u postgres psql -f contrib/postgresql-create-database.sql
log::
tail -f logs/AuraEngine.log
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment