sdaps / sdaps-web

Django frontend for SDAPS
GNU Affero General Public License v3.0
6 stars 3 forks source link

sdaps-web is a django application that can be used as a frontend for SDAPS and is written in Python 3.

There is a public instance of this code running on https://demo.sdaps.org. You can log in using the username "demo" and the password "sdapsdemo". Please do not rely on this service for any production use.

To contribute you can create issues and pull requests or join our irc/matrix chat you can find on the project site https://sdaps.org


What is working (sort of):

What is missing:

Installation (Docker setup)

First, you have to install docker and docker-compose: https://docs.docker.com/get-docker/

After doing that, run:

easy/init

This will setup the docker environment for you.

After this is finished, start the server by running:

easy/server

You can stop the server by running:

easy/stop-server

To see the logs for the currently running services and build pipelines, take a look at the following scripts:

easy/django-log
easy/celery-log
easy/svelte-log

If you wanna have a fresh start and wipe everything, just run:

easy/reset

If you want to execute arbitrary commands, you should always do it using the easy/exec script e.g.

easy/exec python manage.py test tests

to run the tests