Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/city-of-helsinki/smbackend
Service Map backend
https://github.com/city-of-helsinki/smbackend
Last synced: about 1 month ago
JSON representation
Service Map backend
- Host: GitHub
- URL: https://github.com/city-of-helsinki/smbackend
- Owner: City-of-Helsinki
- License: agpl-3.0
- Created: 2013-12-29T22:09:19.000Z (almost 11 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-11T11:50:24.000Z (about 1 month ago)
- Last Synced: 2024-11-11T12:35:40.663Z (about 1 month ago)
- Language: Python
- Size: 7.58 MB
- Stars: 17
- Watchers: 28
- Forks: 23
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://dev.azure.com/City-of-Helsinki/palvelukartta/_apis/build/status/smbackend%20Test?repoName=City-of-Helsinki%2Fsmbackend&branchName=develop)](https://dev.azure.com/City-of-Helsinki/palvelukartta/_build/latest?definitionId=921&repoName=City-of-Helsinki%2Fsmbackend&branchName=develop)
[![Codecov](https://codecov.io/gh/City-of-Helsinki/smbackend/branch/master/graph/badge.svg)](https://codecov.io/gh/City-of-Helsinki/smbackend)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=City-of-Helsinki_smbackend&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=City-of-Helsinki_smbackend)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)Service Map Backend
===================This is the backend service for the Service Map UI.
Installation with Docker Compose
------------First configure development environment settings as stated in `.env.example` and in `config_dev_ui.env.example`.
### Running the application
Run application with `docker-compose up`
This will startup and bind local postgres, servicemap backend and servicemap frontend containers.
### Run migrations
When building the application for the first time, migrations need to be run. This can be done with the following command:
`docker-compose exec servicemap python manage.py migrate`
### Importing data
To import data for development usage and automatically index it, run command:
`docker-compose run servicemap maintenance_tasks all`However, this might take a while, especially on the first run. You can also import the needed data separately, but note
that there are some dependencies between the data imports. The commands for the imports are found in
[scripts/run_imports.sh](scripts/run_imports.sh).Installation without Docker
------------1. First, install the necessary Debian packages.
* libpython3.10-dev
* python3.10-distutils
* virtualenvwrapper
* libyaml-dev
* libxml2-dev
* libxslt1-dev
* voikko-fi
* libvoikko-dev2. Clone the repository.
Use pyenv to manage python version and create a virtualenv with virtualenvwrapper.
The virtualenv that will be created and used here is named "servicemap"
```
pyenv install -v 3.10.1
pyenv virtualenv 3.10.1 smbackend
pyenv local smbackend
pyenv virtualenvwrapper
mkvirtualenv servicemap
```Installation and usage info for pyenv, pyenv-virtualenvwrapper and
virtualenvwrapper can be found here:
https://github.com/pyenv/pyenv-virtualenv
https://github.com/pyenv/pyenv-virtualenvwrapper
https://virtualenvwrapper.readthedocs.io/en/latest/install.html3. Install pip requirements.
Be sure to load the virtualenv before installing the requirements:
Example with virtualenv named servicemap as created in example above.
```workon servicemap```
Install the requirements:
```pip install -r requirements.txt```If this error occurs:
```
ImportError: cannot import name 'html5lib' from 'pip._vendor' (/home/johndoe/.virtualenvs/servicemap/lib/python3.10/site-packages/pip/_vendor/__init__.py)
```
Try installing latest pip.
```
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10
```4. Setup the PostGIS database.
Please note, we recommend PostgreSQL version 13 or higher.
Local setup:
First, ensure that the collation fi_FI.UTF-8 exists by entering the
postgresql shell with the psql command.
```
sudo su postgres
psql
SELECT * FROM pg_collation where collname like '%fi%';
```
There should be a `collname` fi_FI.UTF-8 . If not, you must create the collation.```
sudo su postgres
psql
ALTER database template1 is_template=false;
DROP database template1;
CREATE DATABASE template1 WITH OWNER = postgres ENCODING = 'UTF8' TABLESPACE = pg_default LC_COLLATE = 'fi_FI.UTF-8' LC_CTYPE = 'fi_FI.UTF-8' CONNECTION LIMIT = -1 TEMPLATE template0;
ALTER database template1 is_template=true;
\q
psql template1 -c 'CREATE EXTENSION IF NOT EXISTS postgis;'
psql template1 -c 'CREATE EXTENSION IF NOT EXISTS hstore;'
psql template1 -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
createuser -RSPd servicemap
createdb -O servicemap -T template1 -l fi_FI.UTF-8 -E utf8 servicemap
``````
ERROR: could not open extension control file "/usr/share/postgresql/14/extension/postgis.control": No such file or directory
```
Solution for ubuntu and Postgresql 14:
```
sudo apt install postgis postgresql-14-postgis-3
```Docker setup (modify as needed, starts the database on local port 8765):
```
docker run --name servicemap-psql -e POSTGRES_USE.R=servicemap -e POSTGRES_PASSWORD=servicemap -p 8765:5432 -d mdillon/postgis
# you'll need the hstore extension enabled:
echo "CREATE EXTENSION hstore;" | docker exec -i servicemap-psql psql -U servicemap
```5. Create database tables.
```
./manage.py migrate
```If this command fails with: `django.core.exceptions.ImproperlyConfigured: GEOS is required and has not been detected.`,
then install the GEOS library. On a Mac this can be achieved with HomeBrew:
```
brew install geos
```6. Import geo data.
```
./manage.py geo_import finland --municipalities
./manage.py geo_import helsinki --divisions
./manage.py geo_import helsinki --addresses
```### Importing addresses from geo-search
```
./manage.py geo_import uusimaa --addresses
./manage.py update_postal_code_areas
```
Note, this imports all the addresses from Uusimaa-region and might take ~6 hours.
Postal code area datas can be enriched from geo-search using `update_postal_code_areas` -management-command.### Indexing search columns
The search columns must be indexed after the first time data is imported or geo-search addresses are imported or addresses are enriched with geo-search data.
```
./manage.py index_search_columns
```7. Redis
Redis is used for caching and as a message broker for Celery.
Install Redis. Ubuntu: `sudo apt-get install redis-server`8. Celery
Install and run a message broker such as Redis or RabbitMQ.
Redis is recommended as it is also used for caching.
Configure the message broker in the environment variable "CELERY_BROKER_URL".
Start a Celery worker to handle asynchronous tasks locally with command:
```
celery -A smbackend worker -l INFO
```
Note, in production environment the celery worker can be run as a daemon.
https://docs.celeryproject.org/en/stable/userguide/daemonizing.html#daemonizing
Start Celery beat to handle scheduled periodic tasks with command:
```
celery -A smbackend beat -l INFO
```Updating requirements
---------------------pip-tools is used to manage requirements. To update the requirements, run:
```
pip-compile -U requirements.in
pip-compile -U requirements-dev.in
```Code formatting
---------------------
The code is formatted with black, flake8 and isort. To format the code, run:
```
isort .
black .
```Observations
------------Load the initial observation data with the command:
```
./scripts/import_observation_initial_data.sh
```Troubleshooting
---------------The error:
```
OSError: dlopen(/usr/local/lib/libgdal.dylib, 6): Symbol not found: _GEOSArea
```
Can be fixed by adding this to local_settings.py:
```python
GDAL_LIBRARY_PATH = "/usr/local/lib/libgdal.dylib"
import ctypes
ctypes.CDLL(GDAL_LIBRARY_PATH)
```The error:
```
psycopg2.errors.UndefinedObject: operator class "gin_trgm_ops" does not exist for access method "gin"
```
Can be fixed by adding the pg_trgm extension to the database:
```
psql template1 -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
```