Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error in README #129

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If installing this system from scratch:

- Run `docker-compose up --build` (requires [Docker](https://www.docker.com/) to be running)
- If you want to load initial data (variables, units, stations...):
- In a separate terminal run `docker exec -it <name_of_docker_container> bash` e.g. `docker exec -it paricia_web_1 bash` to start a bash session in the container. You can find the name of the container in the Docker Desktop GUI, or by running `docker container ls`.
- In a separate terminal run `docker exec -it <name_of_docker_container> bash` e.g. `docker exec -it paricia-web-1 bash` to start a bash session in the container. You can find the name of the container in the Docker Desktop GUI, or by running `docker container ls`.
- Run `python manage.py shell < utilities/load_initial_data.py`.
- Create **admin** user running `python manage.py createsuperuser`.

Expand Down Expand Up @@ -80,7 +80,7 @@ The project is coordinated by [Prof. Wouter Buytaert](https://www.imperial.ac.uk

The code was originally based on the iMHEA platform - Plataforma para la **I**niciativa Regional de **M**onitoreo **H**idrológico de **E**cosistemas **A**ndinos. We are grateful to the following instututions for the development of iMHEA and for sharing their code to use as a starting point for Paricia:

- Fondo para la Proteccion del Agua (FONAG), Ecuador.
- Fondo para la Proteccion del Agua (FONAG), Ecuador.
- Empresa Pública Metropolitana de Agua Potable Y Saneamiento de Quito (EPMAPS)m Ecuador.

### Tests
Expand Down
6 changes: 4 additions & 2 deletions utilities/data/station_station.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"station_altitude": null,
"station_file": "",
"station_external": false,
"influence_km": null
"influence_km": null,
"timezone": "America/Lima"
}
},
{
Expand All @@ -38,7 +39,8 @@
"station_altitude": null,
"station_file": "",
"station_external": false,
"influence_km": null
"influence_km": null,
"timezone": "America/Lima"
}
},
{
Expand Down
Loading