Skip to content

GENCARDIO/panel_master

Repository files navigation

PanelMaster

Flask Application to manage gene panels

Requirements

  • docker

Run on production

To run the application you need to start the following container specified at docker-compose.yaml:

  • panel_master

First, make sure that all volumes from from panel_master are available. Modify the paths of the local mounted volumes (underlined) as needed:

  • /home/bdelolmo/PANELS_DB/:/app/panels_db
  • /home/bdelolmo/PANELS_DB/data:/app/data

Then, modify the ports parameter and the FLASK_RUN_HOST environment variable as needed.

version: '3.7'
services:
  panel_master:
      build: .
      ports:
        - 8000:8000
      volumes:
        - .:/app
        - /home/bdelolmo/PANELS_DB/:/app/panels_db
        - /home/bdelolmo/PANELS_DB/data:/app/data
      environment:
        FLASK_ENV: development
        APP_PORT: "8000"
        FLASK_RUN_HOST: "172.16.78.81:8000"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published