No description
Find a file
2021-01-23 12:18:12 +01:00
.github/workflows Commit for MarcinK50 2021-01-07 00:48:06 +01:00
app Preparing for react 2021-01-23 10:38:30 +01:00
frontend Preparing for react 2021-01-23 10:38:30 +01:00
tests Fix tests 2021-01-23 10:50:15 +01:00
wulkanowy Preparing for react 2021-01-23 10:38:30 +01:00
.envsample Add Development section in README 2021-01-08 18:38:17 +01:00
.gitattributes First commit 2020-12-02 15:38:03 +01:00
.gitignore Editing .gitignore 2021-01-23 12:18:12 +01:00
manage.py Rewriting login to JS 2021-01-06 00:41:20 +01:00
README.md Update README.md 2021-01-22 18:38:28 +01:00
requirements.txt Generating and saveing key 2021-01-19 12:38:11 +01:00
runserver.bat Added more start command into runserver.bat file. 2021-01-22 18:52:26 +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