Skip to content

Running development environment

Ville Ranki edited this page Oct 10, 2019 · 6 revisions

Prerequisities

python 3.7 and pipenv

Environment setup (Ubuntu)

sudo apt install pipenv git

Starting for the first time

git clone [email protected]:TampereHacklab/mylysa.git
cd mylysa
pipenv shell
pipenv install
./manage.py makemigrations
./manage.py migrate
./manage.py createsuperuser
./manage.py compilemessages
./manage.py loaddata memberservices
./manage.py runserver

and browse to http://127.0.0.1:8000/www

Clone this wiki locally