No description
Find a file
2021-04-07 10:33:38 +02:00
.github/workflows Update python-app.yml 2021-01-30 22:24:33 +01:00
app Resolve conflicts 2021-02-05 21:19:36 +01:00
frontend Getting data 2021-02-07 21:31:37 +01:00
tests Fix tests - register_r 2021-02-05 20:23:45 +01:00
wulkanowy Class stats - getting data 2021-02-02 22:19:29 +01:00
.Dockerignore Add docker support 2021-04-07 10:04:54 +02:00
.gitattributes First commit 2020-12-02 15:38:03 +01:00
.gitignore Button click color 2021-02-06 10:27:32 +01:00
docker-compose.yml Fix compose 2021-04-07 10:33:38 +02:00
Dockerfile Fix compose 2021-04-07 10:33:38 +02:00
install.bat Update install.bat 2021-02-05 13:36:23 +01:00
LICENSE Create LICENSE 2021-03-25 23:30:34 +01:00
manage.py Rewriting login to JS 2021-01-06 00:41:20 +01:00
README.md Add docker support 2021-04-07 10:04:54 +02:00
requirements.txt Autogenerate secret key 2021-01-28 20:48:04 +01:00

Wulkanowy-web

🌋 Unofficial browser VULCAN UONET+ client for both students and their parents

GitHub Workflow Status Discord

Development

1. Install dependencies.

pip install -r requirements.txt

And in frontend:

npm install

2. Make migrations

python manage.py makemigrations
python manage.py migrate

3. Start the server!

python manage.py runserver

And in frontend:

npm run dev

Docker

With docker compose

docker-compose up -d

Without docker compose

docker build -t wulkanowy/web .
docker run -d -p 8000:8000 wulkanowy/web