Skip to content

Commit c67a6f6

Browse files
committed
Pilot HDC 1.0
1 parent 8e75ea2 commit c67a6f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+8157
-1
lines changed

.dockerignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Folders
2+
.git
3+
.venv
4+
.env
5+
venv
6+
env
7+
kubernetes
8+
9+
# Files
10+
.DS_Store
11+
.env.local
12+
.gitignore
13+
.gitlab-ci*
14+
gitlab-ci*
15+
Dockerfile*
16+
Jenkinsfile
17+
*.log

.env.example

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Vault configuration
2+
# is sensitive/secret
3+
VAULT_TOKEN=
4+
5+
# contains defaults but can be overriden
6+
VAULT_URL=
7+
VAULT_CRT=
8+
9+
# Service configuration
10+
# contains defaults but can be overriden
11+
CONFIG_CENTER_ENABLED=false
12+
APP_NAME=bff-cli
13+
version=2.0.0
14+
port=5080
15+
host=0.0.0.0
16+
OPEN_TELEMETRY_HOST=0.0.0.0
17+
OPEN_TELEMETRY_PORT=6831
18+
OPEN_TELEMETRY_ENABLED=false
19+
LOG_LEVEL_DEFAULT=30
20+
LOG_LEVEL_FILE=30
21+
LOG_LEVEL_STDOUT=30
22+
LOG_LEVEL_STDERR=40
23+
24+
# is sensitive/secret
25+
CLI_SECRET=
26+
27+
# needs to be set (no defaults)
28+
CLI_PUBLIC_KEY_PATH=
29+
CORE_ZONE_LABEL=
30+
GREEN_ZONE_LABEL=
31+
32+
# Redis
33+
# contains defaults but can be overriden
34+
REDIS_HOST=127.0.0.1
35+
REDIS_DB=0
36+
REDIS_PORT=6379
37+
38+
# is sensitive/secret
39+
REDIS_PASSWORD=
40+
41+
# Microservices
42+
# contains defaults but can be overriden
43+
AUTH_SERVICE=http://127.0.0.1:5061
44+
UPLOAD_SERVICE_GREENROOM=http://127.0.0.1:5079
45+
UPLOAD_SERVICE_CORE=http://127.0.0.1:5079
46+
DOWNLOAD_SERVICE_CORE=http://127.0.0.1:5077
47+
DOWNLOAD_SERVICE_GREENROOM=http://127.0.0.1:5077
48+
DATASET_SERVICE=http://127.0.0.1:5081
49+
HPC_SERVICE=http://127.0.0.1:5080
50+
KG_SERVICE=http://127.0.0.1:5082
51+
METADATA_SERVICE=http://127.0.0.1:5065
52+
PROJECT_SERVICE=http://127.0.0.1:5064
53+
54+
# External APIs
55+
# contains defaults but can be overriden
56+
ATLAS_API=http://127.0.0.1:21000
57+
58+
# needs to be set (no defaults)
59+
ATLAS_ADMIN=
60+
ATLAS_PASSWD=
61+
ATLAS_ENTITY_TYPE=

.gitignore

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.__pycache__
6+
# C extensions
7+
*.so
8+
.idea
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
98+
__pypackages__/
99+
100+
101+
# Environments
102+
.env
103+
.venv
104+
env/
105+
venv/
106+
ENV/
107+
env.bak/
108+
venv.bak/
109+
110+
111+
112+
# mkdocs documentation
113+
/site
114+
115+
# mypy
116+
.mypy_cache/
117+
.dmypy.json
118+
dmypy.json
119+
120+
# Pyre type checker
121+
.pyre/
122+
123+
# pytype static type analyzer
124+
.pytype/
125+
126+
# Cython debug symbols
127+
cython_debug/
128+
129+
# Customized
130+
.vscode/settings.json
131+
test_seeds
132+
build
133+
.DS_Store
134+
*.__pycache__
135+
*.logs
136+
logs
137+
gunicorn_error.log
138+
gunicorn_access.log
139+
.env
140+
test.py

.pre-commit-config.yaml

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
repos:
2+
3+
- repo: https://github.com/pre-commit/pre-commit-hooks
4+
rev: v4.3.0
5+
hooks:
6+
- id: check-added-large-files
7+
- id: check-docstring-first
8+
- id: check-merge-conflict
9+
- id: check-toml
10+
- id: check-yaml
11+
- id: double-quote-string-fixer
12+
- id: end-of-file-fixer
13+
- id: trailing-whitespace
14+
15+
- repo: https://github.com/psf/black
16+
rev: 22.8.0
17+
hooks:
18+
- id: black
19+
args: [
20+
'--line-length=120',
21+
'--skip-string-normalization',
22+
]
23+
24+
- repo: https://github.com/PyCQA/isort
25+
rev: 5.12.0
26+
hooks:
27+
- id: isort
28+
args: [
29+
'--line-length=120',
30+
'--profile=black',
31+
'--filter-files',
32+
'--force-single-line-imports',
33+
'--reverse-relative',
34+
]
35+
36+
- repo: https://github.com/PyCQA/flake8
37+
rev: 5.0.4
38+
hooks:
39+
- id: flake8
40+
additional_dependencies: [
41+
'pycodestyle==2.9.1', # E,W
42+
'pyflakes==2.5.0', # F
43+
'mccabe==0.7.0', # C
44+
'flake8-bugbear==22.9.11', # B
45+
'flake8-builtins==1.5.3', # A
46+
'flake8-comprehensions==3.10.0', # C4
47+
'flake8-debugger==4.1.2', # T1
48+
'flake8-logging-format==0.7.5', # G
49+
'flake8-print==5.0.0', # T2
50+
]
51+
args: [
52+
'--select=E,W,F,C,B,A,C4,T1,G,T2',
53+
'--ignore=E203,W503,B008,B305,A003,G004',
54+
'--max-complexity=10',
55+
'--max-line-length=120',
56+
]
57+
58+
- repo: https://github.com/myint/docformatter
59+
rev: v1.5.0
60+
hooks:
61+
- id: docformatter
62+
args: [
63+
'--wrap-summaries=120',
64+
'--wrap-descriptions=120',
65+
'--in-place',
66+
]
67+
68+
- repo: https://github.com/Lucas-C/pre-commit-hooks
69+
rev: v1.4.2
70+
hooks:
71+
- id: insert-license
72+
files: \.py$
73+
args: [
74+
'--license-filepath=COPYRIGHT',
75+
'--comment-style=#',
76+
'--use-current-year',
77+
]

CONTRIBUTING.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Contribution Guide
2+
3+
## Bug Reports
4+
5+
For bug reports, [submit an issue](https://github.com/PilotDataPlatform/sandbox/issues).
6+
7+
## Pull Requests
8+
9+
1. Fork the [main repository](https://github.com/PilotDataPlatform/sandbox).
10+
2. Create a feature branch to hold your changes.
11+
3. Work on the changes in your feature branch.
12+
4. Add [Unit Tests](#unit-tests).
13+
5. Follow the Getting Started instruction to set up the service.
14+
6. Create the Alembic [migration](#migrations) environment only when it's needed.
15+
7. Test the code and create a pull request.
16+
17+
### Migrations
18+
19+
To create a new migration with Alembic, run:
20+
21+
```
22+
docker compose run --rm alembic revision -m "Migration name"
23+
```
24+
25+
### Unit Tests
26+
27+
When adding a new feature or fixing a bug, unit tests are necessary to write. Currently we use Pytest as our testing framework and all test cases are written under the `tests` directory.
28+
29+
Some services may need extra dependencies to run tests. Example:
30+
31+
```
32+
docker run redis
33+
```
34+
35+
Run test cases with Poetry and Pytest:
36+
```
37+
poetry run pytest
38+
```

COPYRIGHT

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Copyright (C) 2022-2023 Indoc Systems
2+
3+
Licensed under the GNU AFFERO GENERAL PUBLIC LICENSE, Version 3.0 (the "License") available at https://www.gnu.org/licenses/agpl-3.0.en.html.
4+
You may not use this file except in compliance with the License.

Dockerfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM python:3.9-buster
2+
3+
WORKDIR /usr/src/app
4+
5+
ENV TZ=America/Toronto
6+
7+
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
8+
echo $TZ > /etc/timezone && \
9+
apt-get update && \
10+
apt-get install -y vim-tiny less && \
11+
ln -s /usr/bin/vim.tiny /usr/bin/vim && \
12+
rm -rf /var/lib/apt/lists/*
13+
COPY . .
14+
RUN pip install --no-cache-dir poetry==1.2.0
15+
RUN poetry config virtualenvs.create false
16+
RUN poetry install --no-dev --no-root --no-interaction
17+
RUN chmod +x gunicorn_starter.sh
18+
19+
CMD ["./gunicorn_starter.sh"]

LICENSE

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
Copyright (C) 2022-2023 Indoc Systems
2+
13
GNU AFFERO GENERAL PUBLIC LICENSE
24
Version 3, 19 November 2007
35

@@ -658,4 +660,4 @@ specific requirements.
658660
You should also get your employer (if you work as a programmer) or school,
659661
if any, to sign a "copyright disclaimer" for the program, if necessary.
660662
For more information on this, and how to apply and follow the GNU AGPL, see
661-
<https://www.gnu.org/licenses/>.
663+
<https://www.gnu.org/licenses/>.

0 commit comments

Comments
 (0)