No description
Find a file
2021-04-22 16:08:31 +02:00
.github/workflows Replace react to vue and add login panel 2021-04-08 20:35:21 +02:00
app Implement django rest framework && change name 'oun'(xd) to school_url 2021-04-10 12:18:58 +02:00
frontend Fix warnings 2021-04-22 16:08:31 +02:00
tests Tests 2021-02-02 22:24:58 +01:00
wulkanowy Try to fix 'no module Wulkanowy' 2021-04-10 12:38:56 +02:00
.Dockerignore Add docker support 2021-04-07 10:04:54 +02:00
.editorconfig Replace react to vue and add login panel 2021-04-08 20:35:21 +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
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 student select list 2021-04-11 11:14:25 +02:00
requirements.txt Allow CORS for localhost:8080 2021-04-10 12:30:22 +02: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 build

Docker

With docker compose

docker-compose up -d

Without docker compose

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