Skip to content

rvovard/osmose-app

 
 

Repository files navigation

OsmoseApp

Deployment

For Ifremer infrastructure follow the comments in the .gitlab-ci.yml file, otherwise use the docker-compose.yml file (you should create a .env file with the required variables).

Development

This project uses poetry (pip install poetry) for Python dev and npm for Javascript dev.

Setup

Backend:

# Initial setup
poetry install
docker run --name devdb -e POSTGRES_PASSWORD=postgres -p 127.0.0.1:5432:5432 -d postgis/postgis
poetry run python manage.py seed
# Run
docker start devdb
poetry run python manage.py runserver

Frontend:

# Initial setup
cd frontend
npm install
# Run
npm start

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 51.5%
  • JavaScript 33.1%
  • Python 14.1%
  • Other 1.3%