Skip to content

Commit ceed8f6

Browse files
committed
added demo building
1 parent 750c09a commit ceed8f6

File tree

3 files changed

+92
-0
lines changed

3 files changed

+92
-0
lines changed

.env.demo

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
MODE=
2+
FLASK_ENV=${MODE}
3+
FLASK_DEBUG=False
4+
SERVER_NAME=127.0.0.1:80
5+
FLASK_RUN_CERT=
6+
FLASK_RUN_KEY=
7+
RESTX_ERROR_404_HELP=False
8+
ERROR_404_HELP=False
9+
PROPAGATE_EXCEPTIONS=False
10+
11+
CORS_EXPOSE_HEADERS=Content-Type,Authorization,Set-Cookie
12+
CORS_METHODS=GET,POST,PUT,DELETE,OPTIONS
13+
14+
ARANGODB_DATABASE_URL=http://spex-arangodb:8529
15+
ARANGODB_DATABASE_NAME=spex_db
16+
ARANGODB_USERNAME=root
17+
ARANGODB_PASSWORD=
18+
19+
OMERO_HOST=host.docker.internal
20+
OMERO_WEB=http://host.docker.internal:4080
21+
22+
OMERO_SESSIONS_HOST=http://spex-ms-omero-sessions:8080
23+
24+
JWT_COOKIE_SAMESITE=Lax
25+
JWT_COOKIE_CSRF_PROTECT=True
26+
JWT_SECRET_KEY=
27+
28+
REDIS_HOST=spex-redisjson
29+
REDIS_PORT=6379
30+
REDIS_PASSWORD=
31+
REDIS_SESSION_ALIVE_H=12
32+
33+
#files
34+
MAX_CONTENT_LENGTH=536870912
35+
ALLOWED_EXTENSIONS=['txt','pdf','png','jpg','jpeg','gif']
36+
DATA_STORAGE=//DATA_STORAGE
37+
UPLOAD_FOLDER=//DATA_STORAGE/UPLOADS
38+
DOCKER_IMAGE='ms-u-service_ms_u_service:latest'
39+
COMPRESS_MIMETYPES=['text/csv']
40+
COMPRESS_REGISTER=False
41+
42+
# env for docker
43+
ARANGO_ROOT_PASSWORD=${ARANGODB_PASSWORD}

Demo_Dockerfile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM spex.common:latest
2+
3+
# Keeps Python from generating .pyc files in the container
4+
ENV PYTHONDONTWRITEBYTECODE 1
5+
# Turns off buffering for easier container logging
6+
ENV PYTHONUNBUFFERED 1
7+
8+
EXPOSE 80
9+
10+
COPY ./common /app/common
11+
COPY ./backend /app/backend
12+
WORKDIR /app/backend
13+
14+
RUN pipenv install --system --deploy --ignore-pipfile
15+
16+
RUN pip install seaborn matplotlib==3.5.1 MarkupSafe==2.0.1 anndata==0.8.0 scanpy==1.9.3 vitessce==3.0.5 lttb==0.3.1
17+
18+
CMD ["python", "app_demo.py"]

app_demo.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from spex_common.config import load_config
2+
from flask import Flask
3+
from flask_bcrypt import Bcrypt
4+
from flask_jwt_extended import JWTManager
5+
from flask_cors import CORS
6+
from routes import blueprint
7+
from flask_compress import Compress
8+
import logging
9+
10+
config = load_config()
11+
logging.getLogger("urllib3").setLevel(logging.WARNING)
12+
logging.getLogger("werkzeug").setLevel(logging.WARNING)
13+
logging.getLogger("matplotlib.font_manager").setLevel(logging.WARNING)
14+
logging.getLogger("PIL.PngImagePlugin").setLevel(logging.WARNING)
15+
logging.getLogger("matplotlib.axes._base").setLevel(logging.WARNING)
16+
17+
application = Flask(__name__)
18+
Compress(application)
19+
20+
application.config.from_mapping(config)
21+
22+
23+
bcrypt = Bcrypt(application)
24+
jwt = JWTManager(application)
25+
CORS(application, supports_credentials=True)
26+
27+
28+
application.register_blueprint(blueprint)
29+
30+
if __name__ == '__main__':
31+
application.run(host='0.0.0.0', debug=True)

0 commit comments

Comments
 (0)