User account management for systemausfall.org
https://git.hack-hro.de/systemausfall/userausfall
| debian | ||
| make.d | ||
| public | ||
| src | ||
| userausfall | ||
| .browserslistrc | ||
| .bumpversion.cfg | ||
| .editorconfig | ||
| .eslintrc.js | ||
| .gitignore | ||
| babel.config.js | ||
| LICENSE | ||
| Makefile | ||
| package-lock.json | ||
| package.json | ||
| pyproject.toml | ||
| README.md | ||
| setup.cfg | ||
| setup.py | ||
| tox.ini | ||
| tsconfig.json | ||
| VERSION | ||
| vue.config.js | ||
Userausfall
User account management for systemausfall.org
Quick Development Setup
Bootstrap your venv and project (you’ll need to do this only once):
# Create a virtual environment
python3 -m venv --system-site-packages venv
# Activate your venv
. venv/bin/activate
# Install dependencies
pip install --editable .
In the future just run:
# Activate your venv
. venv/bin/activate
# Configure the settings
export DJANGO_SETTINGS_MODULE=userausfall.settings
# Apply database migrations
python3 -m django migrate
Start the API development server with:
python3 -m django runserver