User account management for systemausfall.org
https://git.hack-hro.de/systemausfall/userausfall
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 year ago | |
---|---|---|
debian | 2 years ago | |
make.d | 2 years ago | |
public | 2 years ago | |
src | 1 year ago | |
userausfall | 1 year ago | |
.browserslistrc | 2 years ago | |
.bumpversion.cfg | 2 years ago | |
.editorconfig | 1 year ago | |
.eslintrc.js | 2 years ago | |
.gitignore | 1 year ago | |
LICENSE | 2 years ago | |
Makefile | 2 years ago | |
README.md | 1 year ago | |
VERSION | 2 years ago | |
babel.config.js | 2 years ago | |
package-lock.json | 2 years ago | |
package.json | 2 years ago | |
pyproject.toml | 1 year ago | |
setup.cfg | 1 year ago | |
setup.py | 1 year ago | |
tox.ini | 1 year ago | |
tsconfig.json | 2 years ago | |
vue.config.js | 2 years ago |
README.md
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