wulkanowy-web/README.md
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

877 B

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