No description
Find a file
2021-01-23 12:23:24 +01:00
.github/workflows Adding files 2021-01-23 12:23:24 +01:00
app Adding files 2021-01-23 12:23:24 +01:00
frontend Adding files 2021-01-23 12:23:24 +01:00
tests Adding files 2021-01-23 12:23:24 +01:00
wulkanowy Adding files 2021-01-23 12:23:24 +01:00
.envsample Adding files 2021-01-23 12:23:24 +01:00
.gitattributes Adding files 2021-01-23 12:23:24 +01:00
.gitignore Adding files 2021-01-23 12:23:24 +01:00
manage.py Adding files 2021-01-23 12:23:24 +01:00
README.md Adding files 2021-01-23 12:23:24 +01:00
requirements.txt Adding files 2021-01-23 12:23:24 +01:00
runserver.bat Adding files 2021-01-23 12:23:24 +01:00

Wulkanowy-web

🌋 Unofficial browser VULCAN UONET+ register client for both students and their parents

GitHub Workflow Status Discord

Development

1. Install webpack and dependencies.

npm install webpack
pip install -r requirements.txt

2. Create .env and make migrations

In the .env file put the code:

SECRET_KEY = writeanythinghere

After saving the files, we migrate with these commands:

python manage.py makemigrations
python manage.py migrate

and modify the .envsample file as you would the .env file THE SECRET KEY MUST BE THE SAME

3. Start the server!

npm run dev
python manage.py runserver

or if you run Windows you can run:

runserver.bat