##// END OF EJS Templates
README fix
README fix

File last commit:

r362:1578c7297ecf
r362:1578c7297ecf
Show More
README.md
46 lines | 1.5 KiB | text/x-minidsrc | MarkdownLexer
README update
r356 # Integrated Weather Radar System (SIRM)
SIR with docker-compose working
r299
README fix
r362 The Integrated Weather Radar System (SIRM) is a web application which allows the configuration of SOPHy^1^ radar devices as required by the experiment. This app allows the creation of Experiment and Device Configurations (Pedestal, Generator, USRP Rx and USRP Tx).
README update
r361
For more information visit: https://doi.org/10.5281/zenodo.5571130.
README fix
r362 ^1^Scanning-system for Observation of Peruvian Hydrometeorological-events
SIR with docker-compose working
r299
## Installation
We recommend use docker/docker-compose for test/production but you can install the aplication as a normal django app.
### 1. Download
README update
r361 Download the application *radarsys_met* to your workspace
SIR with docker-compose working
r299
$ cd /path/to/your/workspace
README update
r361 $ git clone http://intranet.igp.gob.pe:8082/radarsys_met && cd radarsys_met
SIR with docker-compose working
r299
### 2. Config app
Update README
r301 Update enviroment vars (/path/to/radarsys/.env)
SIR with docker-compose working
r299
Update README
r301 REDIS_HOST=radarsys-redis
REDIS_PORT=6300
SIR with docker-compose working
r299 POSTGRES_DB_NAME=radarsys
POSTGRES_PORT_5432_TCP_ADDR=radarsys-postgres
Update README
r301 POSTGRES_PORT_5432_TCP_PORT=5400
SIR with docker-compose working
r299 POSTGRES_USER=docker
POSTGRES_PASSWORD=****
PGDATA=/var/lib/postgresql/data
LC_ALL=C.UTF-8
Update README
r301 ### 3. Build application & make migrations (only once at installation)
SIR with docker-compose working
r299
README update
r361 You should maybe run the commands using <code>sudo</code>
$ cd /path/to/radarsys_met
SIR with docker-compose working
r299 $ docker-compose build
Update README
r301 $ docker-compose run web python manage.py makemigrations
$ docker-compose run web python manage.py migrate
$ docker-compose run web python manage.py collectstatic
SIR with docker-compose working
r299
### 4. Run containers
Update README
r301 $ docker-compose up -d