wulkanowy-web/README.md

42 lines
977 B
Markdown
Raw Normal View History

# Wulkanowy-web
🌋 Unofficial browser VULCAN UONET+ client for both students and their parents
![GitHub Workflow Status](https://github.com/wulkanowy/wulkanowy-web/workflows/Python%20application/badge.svg)
[![Discord](https://img.shields.io/discord/390889354199040011.svg?color=#33CD56)](https://discord.gg/vccAQBr)
# Development
## 0. Automatic installation (WINDOWS ONLY)
If you don't want to enter commands just run
```shell
install.exe
```
If that doesn't work, run the file:
```shell
install.bat
```
2021-01-26 18:55:57 +01:00
Which is in the batch folder.
2021-01-26 18:57:51 +01:00
2021-01-26 18:55:57 +01:00
After this installation, just follow the 3rd step.
## 1. Install dependencies.
```shell
pip install -r requirements.txt
```
And in frontend:
```shell
npm install
```
2021-01-28 20:48:04 +01:00
## 2. Make migrations
```shell
python manage.py makemigrations
python manage.py migrate
```
## 3. Start the server!
```shell
npm run dev
python manage.py runserver
```
or if you run Windows you can run:
```shell
runserver.bat
2021-01-26 18:55:57 +01:00
```