node - I use v14.0.0
yarn - I use 1.22.4
python3-dev - I use 3.6.9 locally and it runs on 3.8.2
python3-venv - Assumed by setup scripts, general best practice
To setup a new development environment:
./manage init-frontend
./manage init-backendThis will install all dependencies, setup a python venv for the backend, and build the DB with seed data
yarn start in frontend/ will serve the frontend.
env/bin/python manage.py runserver in backend/ will serve the backend.
These are aliased by ./manage start-frontend and ./manage start-backend respectively.
The app is hosted on localhost:3000 and the API is proxied through localhost:8000.
Written in Lua
Copy ContinuumLoot to your interface/addons folder.
In-game: /cloot attendance will give you an export sting of everybody in your current group for pasting into the frontend.
Written in React
There are no special developer scripts here.
The main file is App.js which pulls components from modules/
Written in Django using the Django Rest Framework
source env/bin/activate will enter the python venv and deactivate will leave it.
This will allow you to type python and have it reference the venv without having to type env/bin/python every time.
This is the Django management script.
This runs the API server.
This enters the Django shell.
You can interact with the database here to test Django code and see the current state of the data.
Anytime you change something in the models, this will autogenerate a new migration file.
This will intelligently migrate the database according to the migration files.
This is the Django admin page, you will need to have created a superuser to login.
This is a built-in website that can be configured to developer needs.
Here, you can more visually interact with the database and change it live.