Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dd-decaf/model-storage
The storage for metabolic models used by the platform
https://github.com/dd-decaf/model-storage
Last synced: 6 days ago
JSON representation
The storage for metabolic models used by the platform
- Host: GitHub
- URL: https://github.com/dd-decaf/model-storage
- Owner: DD-DeCaF
- License: apache-2.0
- Created: 2018-08-24T13:18:22.000Z (over 6 years ago)
- Default Branch: devel
- Last Pushed: 2020-12-08T14:31:56.000Z (about 4 years ago)
- Last Synced: 2024-11-09T14:25:54.103Z (2 months ago)
- Language: Python
- Size: 273 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# model-storage
![master Branch](https://img.shields.io/badge/branch-master-blue.svg)
[![master Build Status](https://travis-ci.org/DD-DeCaF/model-storage.svg?branch=master)](https://travis-ci.org/DD-DeCaF/model-storage)
[![master Codecov](https://codecov.io/gh/DD-DeCaF/model-storage/branch/master/graph/badge.svg)](https://codecov.io/gh/DD-DeCaF/model-storage/branch/master)![devel Branch](https://img.shields.io/badge/branch-devel-blue.svg)
[![devel Build Status](https://travis-ci.org/DD-DeCaF/model-storage.svg?branch=devel)](https://travis-ci.org/DD-DeCaF/model-storage)
[![devel Codecov](https://codecov.io/gh/DD-DeCaF/model-storage/branch/devel/graph/badge.svg)](https://codecov.io/gh/DD-DeCaF/model-storage/branch/devel)## Development
Run `make setup` first when initializing the project for the first time. Type
`make` to see all commands.### Environment
Specify environment variables in a `.env` file. See `docker-compose.yml` for the
possible variables and their default values.* Set `ENVIRONMENT` to either
* `development`,
* `testing`, or
* `production`.
* `SECRET_KEY` Flask secret key. Will be randomly generated in development and testing environments.
* `SENTRY_DSN` DSN for reporting exceptions to
[Sentry](https://docs.sentry.io/clients/python/integrations/flask/).
* `ALLOWED_ORIGINS`: Comma-seperated list of CORS allowed origins.### Updating Python dependencies
To compile a new requirements file and then re-build the service with the new requirements, run:
make pip-compile build