Arbitrarium is a web app for simulating stateful entities (dictionary nouns) by applying lexical relationships found in WordNet and FrameNet.
- Create a virtual environment
python -m venv .venv
source .venv/bin/activate- Install requirements
pip install -r requirements.txt- Build docker image
docker compose build- Run docker image
docker compose up -d- Add superuser
docker compose exec backend poetry run python manage.py createsuperuser- Run backend tests
docker compose exec backend poetry run python manage.py runtests
