No description
Find a file
Patryk 5a208feec0
Fix workflows (#82)
* Delete npm from the project part 1

* Fix frontend test and change readme.md

* Try to fix frontend test

* Try to fix workflow frontend

* Add yarn to .gitignore

* Try to fix backend test.

* Try to fix backend

* Update README.md

* Delete cache from project

* Add cache folder to .gitignore

* Fix backdend and frontend test

* Update License Date

* Remove yarn from README.md

* Add special workflow requirements.txt

* Change Location requirements.txt

* Delete pytz entry

* Delete pytest-django entry

* Add pytest-django to requirements.txt
2022-02-02 09:39:04 +01:00
.github/workflows Fix workflows (#82) 2022-02-02 09:39:04 +01:00
app Fix Fakelog.cf mark 1 (#72) 2021-06-08 19:23:31 +02:00
frontend Fix workflows (#82) 2022-02-02 09:39:04 +01:00
tests Fix Fakelog.cf mark 1 (#72) 2021-06-08 19:23:31 +02:00
wulkanowy CORS Fix 2021-09-05 18:50:59 +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 Fix workflows (#82) 2022-02-02 09:39:04 +01:00
manage.py Rewriting login to JS 2021-01-06 00:41:20 +01:00
README.md Fix workflows (#82) 2022-02-02 09:39:04 +01: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

And in frontend:

cd 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:

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