My first Django based project :)
Clone repository: git clone https://github.com/r0v/Webber.git
Go inside directory cd Webber
Install dependencies pipenv install
Jump into virtual enviroment pipenv shell
Run migrations python manage.py migrate
- Comment
STATICFILES_DIRS
in Webber/settings.py, uncommentSTATIC_ROOT
. - Next, generate nessesery static files:
python manage.py collectstatic
/yes
. - After this, look above pkt. 1 and do vice versa commands from behind
Start developer server python manage.py runserver
and develop
Optionally create admin account if you haven't done it yet
Server run on port http://localhost:8000
Have fun and contribute :)