This is the backend for the Mobility Profile
First configure development environment settings as stated in config_dev.env.example
.
Run application with docker-compose up
This will startup and bind local postgres and mobilityprofile backend.
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up
To import questions run: docker-compose run mpbackend import_questions
First, install the necessary Debian packages. TODO, add packages.
- Clone the repository.
git clone https://github.com/City-of-Turku/mpbackend.git
- Install python 3.10 and pip requiremends Be sure to load the environment before installing the requirements.
pip install pip-tools
pip install -r requirements.txt
- Setup the PostGIS database.
Please note, we recommend PostgreSQL version 13 or higher. Local setup:
sudo su postgres
createuser -RSPd mobilityprofile
createdb -O mobilityprofile -l fi_FI.UTF-8 -E utf8 mobilityprofile
- Create database tables.
./manage.py migrate
- Import questions
./manage.py import_questions
- Install Memcached
sudo apt update
sudo apt install memcached