Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.15 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.15 KB
VirtualFleet-Recovery logo
Virtual Fleet - Recovery is a webapp to make predictions of Argo float positions
The goal of this repository is to provide a website to make Argo floats trajectory predictions easy, in order to facilitate recovery.

Installation

mamba env create -f environment.yml
from recovery_webapp import db, create_app
app = create_app()
with app.app_context():
    db.create_all()
flask --app webapp routes
flask --app webapp run