- simplify the configuration module the `package` attribute makes little sense to be user-configurable, since it will always need to be the derivation defined in this very repository. for debugging one may as well change the original code itself. - unbreak deployment setting `CREDENTIALS_DIRECTORY` disabled the systemd mechanism set up in the configuration module. - remove unneeded configuration for deployment - unbreak integration tests before that missed waiting for the service to create some state before running the application-level tests. |
||
|---|---|---|
| .. | ||
| nix | ||
| src | ||
| .envrc | ||
| .gitignore | ||
| default.nix | ||
| README.md | ||
| shell.nix | ||
Fediversity Panel
The Fediversity Panel is a web service for managing Fediversity deployments with a graphical user interface, written in Django.
Development
-
To obtain all tools related to this project, enter the development environment with
nix-shell.If you want to do that automatically on entering this directory:
-
Run
direnv allowin the directory where repository is stored on your machineNote
This is a security boundary, and allows automatically running code from this repository on your machine.
-
Run NixOS integration tests and Django unit tests:
nix-build -A tests -
List all available Django management commands with:
manage -
With a fresh database, run:
manage migrate -
Run the server locally:
manage runserver -
Create an admin user:
manage createsuperuserand log in at http://localhost:8000/admin.
-
After changing the database schema, add migrations and apply them:
manage makemigrations manage migrate -
Use the Django Debug Toolbar for troubleshooting in the browser