No description
Find a file
2021-01-25 21:26:11 +01:00
.github/workflows Adding files 2021-01-23 12:23:24 +01:00
app Fix fixa fixa 2021-01-25 21:24:59 +01:00
frontend Deleting useless code 2021-01-25 10:49:45 +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 Update README.md 2021-01-23 22:34:59 +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+ client for both students and their parents

GitHub Workflow Status Discord

Development

1. Install dependencies.

pip install -r requirements.txt

And in frontend:

npm install

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