38 lines
No EOL
858 B
Markdown
38 lines
No EOL
858 B
Markdown
# 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
|
|
## 1. Install dependencies.
|
|
```shell
|
|
pip install -r requirements.txt
|
|
```
|
|
And in frontend:
|
|
```shell
|
|
npm install
|
|
```
|
|
## 2. Make migrations
|
|
```shell
|
|
python manage.py makemigrations
|
|
python manage.py migrate
|
|
```
|
|
## 3. Start the server!
|
|
```shell
|
|
python manage.py runserver
|
|
```
|
|
And in frontend:
|
|
```shell
|
|
npm run dev
|
|
```
|
|
|
|
# Docker
|
|
## With docker compose
|
|
```shell
|
|
docker-compose up -d
|
|
```
|
|
## Without docker compose
|
|
```shell
|
|
docker build -t wulkanowy/web .
|
|
docker run -d -p 8000:8000 wulkanowy/web |