No description
Find a file
2021-06-07 20:52:47 +02:00
.github/workflows Create codeql-analysis.yml 2021-05-22 21:40:59 +02:00
app Fakelog URL fix 2021-06-07 20:52:47 +02:00
frontend Fakelog URL fix 2021-06-07 20:52:47 +02:00
tests Update test_views.py 2021-04-14 21:32:27 +02: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 Messed up installation order in README.md (#67) 2021-06-07 10:20:44 +02:00
requirements.txt Allow CORS for localhost:8080 2021-04-10 12:30:22 +02:00

Wulkanowy Web

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

GitHub Workflow Status

Join our Discord server!

Discord

Development

1. Install dependencies

pip install -r requirements.txt
npm i --prefix frontend

2. Make migrations

python manage.py makemigrations
python manage.py migrate

3. Start the server

python manage.py runserver

And in frontend:

cd 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