mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-25 15:48:11 +08:00
Merge pull request #120 from chanzuckerberg/csweaver/packaging-improvements
Csweaver/packaging improvements
This commit is contained in:
@@ -22,12 +22,13 @@ A React + Redux web application for exploring large scale single cell RNA sequen
|
||||
|
||||
#### To use with virtual env for python (optional, but recommended)
|
||||
|
||||
python3 -m venv <env name>
|
||||
source <env name>/bin/activate
|
||||
ENV_NAME=cellxgene
|
||||
python3 -m venv ${ENV_NAME}
|
||||
source ${ENV_NAME}/bin/activate
|
||||
|
||||
#### install server
|
||||
|
||||
python setup.py install
|
||||
python3 setup.py install
|
||||
|
||||
#### run (with demo data)
|
||||
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ Compress(app)
|
||||
CORS(app)
|
||||
|
||||
# Config
|
||||
CXG_DIR = os.environ.get("CXG_DIRECTORY", default="/Users/charlotteweaver/Documents/Git/cxg-v2/data/")
|
||||
CXG_DIR = os.environ.get("CXG_DIRECTORY", default="example-dataset/")
|
||||
SECRET_KEY = os.environ.get("CXG_SECRET_KEY", default="SparkleAndShine")
|
||||
ENGINE = os.environ.get("CXG_ENGINE", default="scanpy")
|
||||
TITLE = os.environ.get("DATASET_TITLE", default="PBMC 3K")
|
||||
|
||||
Reference in New Issue
Block a user