diff --git a/.gitignore b/.gitignore index c9d658a..9e5e4a8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ .venv/ .mypy_cache/ __pycache__/ -db.sqlite3 +/db.sqlite3 media/ *.egg-info/ diff --git a/README.md b/README.md index 976c255..5c381e1 100644 --- a/README.md +++ b/README.md @@ -12,3 +12,7 @@ This project is a software that I'am developing during [this series of YouTube s 1. `poetry run python manage.py migrate`. 1. `poetry run python manage.py createsuperuser --name=admin` and set password to `admin` (TODO: make the password optional). 1. `poetry run python manage.py runserver`. + +### DB Example + +You can copy `example/db.sqlite3` file to the project's root and possibly run some migrations (`manage.py mugrate`). Then you'll be able to play example game. It is pretty incomplete but it shows most of engine features. diff --git a/example/db.sqlite3 b/example/db.sqlite3 new file mode 100644 index 0000000..a91251a Binary files /dev/null and b/example/db.sqlite3 differ