Our website.
You can install this project in different way.
Type this commands
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txtAfter this you must configure your src/pykrd/localsettings.py file,
apply migrations, install bower, collect static files and run local development server.
cd src
cp pykrd/localsettings.py.dist pykrd/localsettings.py
bower install
python manage.py migrate
python manage.py collectstatic
python manage.py runserverYour local instance of application will accessible in http://localhost:8000.
Copy .env.dist and edit if need. Run this docker-compose command for start local instance.
docker-compose up -dIn .env you must set NGINX_PORT env var and open your instance of application in http://localhost:${NGINX_PORT}.