No description
Find a file
dependabot[bot] ddde1d0303
Bump path-parse from 1.0.6 to 1.0.7 in /frontend
Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-08-13 00:04:58 +00:00
.github/workflows Create codeql-analysis.yml 2021-05-22 21:40:59 +02:00
app Fix Fakelog.cf mark 1 (#72) 2021-06-08 19:23:31 +02:00
frontend Bump path-parse from 1.0.6 to 1.0.7 in /frontend 2021-08-13 00:04:58 +00:00
tests Fix Fakelog.cf mark 1 (#72) 2021-06-08 19:23:31 +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