Setting up Seshat in a local Ubuntu environment =============================================== .. hint:: Local setup steps have been tested on an M1 Mac and on an Ubuntu VM running on the Mac. Instructions for setting up an Ubuntu VM on a Mac can be found `here `_. Prerequisites ------------- Seshat requires the following software to be installed on your machine: - Python 3 - PostgreSQL 16 with PostGIS - GDAL - GEOS .. admonition:: Installation instructions for prerequisites :class: dropdown **Python 3** Ensure you have a working installation of Python 3. The application has been tested with Python **3.8.13**. If you don't have Python installed, you can download it from the `official website `_. **PostgreSQL and PostGIS** Ensure you have a working installation of PostgreSQL with PostGIS. The application has been tested with PostgreSQL **16**. If you don't have PostgreSQL installed, you can follow the instructions below to install it on Ubuntu: .. code-block:: bash $ sudo apt install gnupg2 wget vim -y $ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' $ curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg $ sudo apt update $ sudo apt install postgresql-16 postgresql-contrib-16 postgresql-16-postgis-3 -y $ sudo systemctl start postgresql $ sudo systemctl enable postgresql **GDAL and GEOS** Ensure you have a working installation of GDAL and GEOS. If you don't have GDAL and GEOS installed, you can follow the instructions below to install them on Ubuntu: .. warning:: You may first want to check the latest available version of ``libgeos`` using .. code-block:: bash $ sudo apt search libgeos .. code-block:: bash $ sudo apt-get install gdal-bin -y $ sudo apt-get install libgdal-dev -y $ sudo apt install libgeos++-dev libgeos3.10.2 -y $ sudo apt install libgeos-c1v5 libgeos-dev libgeos-doc -y Step 1: Set up a virtual environment for the project ---------------------------------------------------- You can use either Conda or Python's built-in ``venv`` module to create a virtual environment for the project. .. tabs:: .. tab:: Conda example Create the environment: .. code-block:: bash $ conda create --name seshat python=3.8.13 Activate the environment: .. code-block:: bash $ conda activate seshat .. tab:: venv example Create the environment: .. code-block:: bash $ python3.8 -m venv seshat Activate the environment: .. code-block:: bash $ source seshat/bin/activate Step 2: Clone the repo ---------------------- Using your Terminal, clone the repository: .. code-block:: bash $ git clone https://github.com/Seshat-Global-History-Databank/seshat Step 3: Create an empty database and add the PostGIS extension -------------------------------------------------------------- .. hint:: Note that you'll have to use ``;`` to end each SQL command. They will not work without this character. In order to create a database, open ``psql`` in the terminal: .. code-block:: bash $ sudo -u postgres psql In the database, run the following SQL command to create a new database. Note that you should replace ```` with the name you want to give the database: .. code-block:: sql CREATE DATABASE ; Exit out of the ``psql`` program: .. code-block:: \q Then open the database using the name you just created in place of ````: .. code-block:: bash $ sudo -u postgres psql -d Now, you can add the PostGIS extension to your database: .. code-block:: sql CREATE EXTENSION postgis; Step 4: Configure GDAL and GEOS ------------------------------- Open :doc:`seshat/settings/base.py ` and check (or update) the paths in the following variables, which should be to the paths to your local ``gdal`` and ``geos`` installations: - ``GDAL_LIBRARY_PATH`` - ``GEOS_LIBRARY_PATH`` Note: there are hardcoded paths in ``base.py`` for the Mac and Ubuntu instructions above included. Step 5: Install the Python packages ----------------------------------- Install the Python packages in your environment (some packages have these as dependencies). From the top level of the ``seshat`` directory, run the following commands to install the packages from the ``requirements.txt`` file and the ``django-geojson`` package: .. code-block:: bash $ pip install -r requirements.txt $ pip install "django-geojson [field]" Step 6: Seshat database setup ----------------------------- Restore Seshat database from dump file: .. code-block:: bash $ sudo nano /etc/postgresql/16/main/pg_hba.conf On the line ``local all postgres peer`` change "peer" to "trust" You should now be able to reload postgres and populate the database with the following commands: .. code-block:: bash $ sudo systemctl reload postgresql $ sudo psql -U postgres < /path/to/file.dump Step 7: Secure the database --------------------------- Add a password to the database for security. Add a password for the superuser by logging in to the database with your superuser: .. code-block:: bash $ sudo -u postgres psql Send the following SQL command to set the password for the superuser. Make sure to replace ```` with your desired password (and make sure to remember it): .. code-block:: sql ALTER USER postgres WITH PASSWORD ''; Locate ``pg_hba.conf`` if you don't know where it is: .. code-block:: bash $ sudo psql -U postgres -c 'SHOW hba_file;' Update postgres to use md5 with ``nano /path/to/pg_hba.conf`` .. image:: ../../../img/pg_hba.conf.png Restart postgres: .. code-block:: bash $ sudo systemctl reload postgresql Step 8: Set up environment variables for connecting to the database ------------------------------------------------------------------- Create a configuration file with your database info for Django. The presence of this file will ensure Django connects to your local database. Within the repo, create a file called ``seshat/settings/.env`` with the database connection variables. .. admonition:: Get a Cesium access token :class: dropdown You will also need to generate an access token for Cesium in order for the globe to render on Seshat pages that include maps. Visit the `Cesium website `_ and create an account. Once you have an account, navigate to the "Access Tokens" tab and create a new token. Add this token to the ``.env`` file as shown below. The file should look like this: .. code-block:: DB_NAME= DB_USER=postgres DB_HOST=localhost DB_PORT=5432 DB_PASSWORD= CESIUM_ION_ACCESS= Step 9: Migrate the database ----------------------------- Ensure that all Django database migrations have run: .. code-block:: bash $ python manage.py migrate Step 10: Collect static files ----------------------------- .. code-block:: bash $ python manage.py collectstatic Step 11: Load the shape data ---------------------------- If the shape data tables are not yet populated in your copy of the Seshat core database and you have access to source data, populate one or more of them with the instructions `here <../spatialdb.rst>`_. Step 12: Run Django ------------------- .. code-block:: bash $ python manage.py runserver If you have set up Seshat on a Multipass VM, you can access the Django server from your host machine by following these commands: First, check IP inside VM: .. code-block:: bash $ ip addr show This will return a value like ``192.168.64.3``. Note this IP address as you will need to insert it into the following commands. In the VM, you need to now ensure that the firewall is not blocking incoming connections on port 8000: .. code-block:: bash $ sudo ufw allow 8000 In a macOS Terminal, run the following command to forward the port, but replace ```` with the IP address you noted earlier: .. code-block:: bash $ multipass exec primary -- sudo iptables -t nat -A PREROUTING -p tcp --dport 8000 -j DNAT --to-destination :8000 Now, restart the VM: .. code-block:: bash $ multipass restart primary Log back into the VM: .. code-block:: bash $ multipass shell primary Finally, run the Django server but remember to first activate the virtual environment (see Step 1): .. code-block:: bash $ python manage.py runserver 0.0.0.0:8000 You should now be able to access the Django server from your host machine by going to ``http://192.168.64.3:8000/`` in a browser (where ``192.168.64.3`` may need to be replaced with the IP address you noted earlier).