umap/docs/install.md

172 lines
4.2 KiB
Markdown
Raw Normal View History

2016-09-10 02:44:46 -05:00
# Installation
2023-11-28 08:54:11 -06:00
## System dependencies
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
uMap is built with the [Python](https://python.org) language, and the [Django](https://djangoproject.com) framework. It needs a [PostgreSQL](https://www.postgresql.org/) database, with the [Postgis](https://postgis.net/) extension enabled.
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
Here are the commands to install the required system dependencies.
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
=== "Debian"
```bash
sudo apt update
sudo apt install python3 python3-dev python3-venv virtualenv postgresql gcc postgis libpq-dev
```
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
=== "Arch Linux"
```bash
yay postgis extra/postgresql-libs
```
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
=== "OS X (with brew)"
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
```bash
brew install postgis
```
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
=== "Fedora"
```bash
sudo dnf install postgis libpq-devel make gcc python3-devel
```
### PostgreSQL
Depending on your system, you might need to create a postgres user, the database, and initialize postgres. Here's how:
```bash
createuser umap -U postgres
createdb umap -O umap -U postgres
psql umap -c "CREATE EXTENSION postgis" -Upostgres
```
## Getting started
Create a geo aware database. See the [GeoDjango docs](https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/) for backend installation.
### Creating a virtual environment
It is recommended to install python projects in a virtual environment to avoid mixing the project installation with your system dependencies. But it's not a requirement and it is up to you 🫣
```bash
python -m venv venv
source venv/bin/activate
```
### Installing the dependencies
You can get all the project dependencies installed with the following command:
```bash
pip install umap-project
```
### Configuration
Create a default `local_settings.py` file, that you will modify with your setting.
```bash
wget https://raw.githubusercontent.com/umap-project/umap/master/umap/settings/local.py.sample -O local_settings.py
```
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
Reference it as env var:
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
```bash
export UMAP_SETTINGS=`pwd`/local_settings.py
```
2016-09-10 02:44:46 -05:00
2023-11-06 05:15:05 -06:00
Add database connection information in `local_settings.py`, for example
2016-09-10 02:44:46 -05:00
2023-12-05 09:18:10 -06:00
```python title="local_settings.py"
2023-11-28 08:54:11 -06:00
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': 'umap',
2016-09-10 02:44:46 -05:00
}
2023-11-28 08:54:11 -06:00
}
```
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
Depending on your installation, you might need to change the user that connects the database.
2023-11-06 05:15:05 -06:00
It should look like this:
2023-12-05 09:18:10 -06:00
```python title="local_settings.py"
2023-11-28 08:54:11 -06:00
DATABASES = {
"default": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"NAME": "umap",
"USER": "postgres",
2023-11-06 05:15:05 -06:00
}
2023-11-28 08:54:11 -06:00
}
```
2023-11-06 05:15:05 -06:00
Add a `SECRET_KEY` in `local_settings.py` with a long random secret key
2016-09-10 02:44:46 -05:00
2023-12-05 09:18:10 -06:00
```title="local_settings.py"
2023-11-28 08:54:11 -06:00
SECRET_KEY = "a long and random secret key that must not be shared"
```
2023-11-06 05:15:05 -06:00
2023-11-28 08:54:11 -06:00
You can easily generate one with [openssl](https://www.openssl.org/):
2023-11-06 05:15:05 -06:00
2023-11-28 08:54:11 -06:00
```bash
openssl rand -base64 32
```
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
uMap uses [python-social-auth](http://python-social-auth.readthedocs.org/) for user authentication. So you will need to configure it according to your needs. For example
2023-12-05 09:18:10 -06:00
```title="local_settings.py"
2023-11-28 08:54:11 -06:00
AUTHENTICATION_BACKENDS = (
'social_auth.backends.contrib.github.GithubBackend',
'social_auth.backends.contrib.bitbucket.BitbucketBackend',
'social_auth.backends.twitter.TwitterBackend',
'django.contrib.auth.backends.ModelBackend',
)
GITHUB_APP_ID = 'xxx'
GITHUB_API_SECRET = 'zzz'
BITBUCKET_CONSUMER_KEY = 'xxx'
BITBUCKET_CONSUMER_SECRET = 'zzz'
TWITTER_CONSUMER_KEY = "xxx"
TWITTER_CONSUMER_SECRET = "yyy"
```
2016-09-10 02:44:46 -05:00
Example of callback URL to use for setting up OAuth apps
2023-11-28 08:54:11 -06:00
http://umap.foo.bar/complete/github/
2016-09-10 02:44:46 -05:00
Adapt the `STATIC_ROOT` and `MEDIA_ROOT` to your local environment.
2023-11-28 08:54:11 -06:00
## Bootstrapping the database
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
Here are the commands you'll need to run to create the tables, collect the static files, etc.
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
```bash
# Create the database tables
umap migrate
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
# Collect and compress static files
umap collectstatic
umap compress
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
# Create a super user
umap createsuperuser
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
# Finally start the server
umap runserver 0.0.0.0:8000
```
2016-09-10 02:44:46 -05:00
2023-11-28 08:54:11 -06:00
## Configuring emails
2023-05-31 10:26:48 -05:00
UMap can send the anonymous edit link by email. For this to work, you need to
2023-12-05 09:18:10 -06:00
add email specific settings. See [the related settings](config/settings.md#email_backend) for more info.
2023-11-28 08:54:11 -06:00
## Upgrading your installation
Usually, for upgrading, you need those steps:
2023-11-28 08:54:11 -06:00
```bash
pip install umap-project --upgrade
umap migrate
umap collectstatic
umap compress
2023-12-15 10:43:13 -06:00
```