No description
Find a file
2022-05-26 06:54:45 +02:00
.github/workflows Add git to the backend.yml 2022-05-26 06:54:45 +02:00
backend Add more info to the /github endpoint 2022-05-25 21:42:34 +02:00
frontend Changes requested by Zaptyp 2022-05-23 18:14:45 +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 Completely new backend and reworked frontend by Marioneq (#93) 2022-05-22 21:00:45 +02:00
docker-compose.yml Fix compose 2021-04-07 10:33:38 +02:00
Dockerfile Completely new backend and reworked frontend by Marioneq (#93) 2022-05-22 21:00:45 +02:00
LICENSE Fix workflows (#82) 2022-02-02 09:39:04 +01:00
README.md Completely new backend and reworked frontend by Marioneq (#93) 2022-05-22 21:00:45 +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

cd backend
pip install -r requirements.txt

And in frontend:

cd frontend
npm install

2. Start the server

cd backend
py -m main

And in frontend:

cd frontend
npm run serve

Docker

With docker compose

docker-compose up -d

Without docker compose

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