Skip to content

Commit

Permalink
update readme with install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
mradamcox committed Jul 4, 2023
1 parent 1b0f69f commit 9f90e66
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Preservation Utah - Map

This is the [Arches](https://archesproject.org) implementation used for Preservation Utah's [easement tracking program](https://map.reservationutah.org).

Arches version: 6.0.0

## Install

A local install looks like this.

```
# create virtual environment, install arches 6.0.0 from repo
python3 -m venv env && source ./env/bin/activate
git clone https://github.com/legiongis/arches && cd arches
git checkout stable/6.0.0
pip install -e .
cd ..
# clone this repo and install node_modules
git clone https://github.com/legiongis/presutah
cd presutah/presutah
yarn install
cd ..
# add database creds, elasticsearch settings, etc.
nano presutah/settings_local.py
# setup database and load package
python manage.py packages -o load_package -s pkg -db
# run the dev server
python manage.py runserver
```
7 changes: 0 additions & 7 deletions README.txt

This file was deleted.

0 comments on commit 9f90e66

Please sign in to comment.