-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #856 from arenadata/develop
Release 2021.05.25
- Loading branch information
Showing
598 changed files
with
16,483 additions
and
10,365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,12 @@ | ||
*/.git* | ||
*@tmp/ | ||
.dockerignore | ||
.git* | ||
.git/ | ||
.pytest_cache | ||
Dockerfile* | ||
Jenkinsfile | ||
Makefile | ||
README.md | ||
allure-*/ | ||
build-adcm.sh | ||
ui-tests.sh | ||
func-tests.sh | ||
data/ | ||
docs_adcm/ | ||
go/Makefile | ||
go/pkg/ | ||
go/src/ | ||
html/ | ||
latex/ | ||
make_html.sh | ||
make_pdf.sh | ||
pdf/ | ||
pylintrc | ||
requirements-test.txt | ||
runserver.sh | ||
server.sh | ||
tests/ | ||
var/cluster.db | ||
web | ||
* | ||
!COPYRIGHT | ||
!LICENSE | ||
!conf | ||
!config.json | ||
!go/bin/runstatus | ||
!os | ||
!python | ||
!requirements* | ||
!web/build_static.sh | ||
!wwwroot |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM python:3.9-alpine | ||
|
||
COPY requirements-base.txt / | ||
COPY build.sh / | ||
|
||
RUN /build.sh | ||
|
||
CMD ["/bin/sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env sh | ||
set -eu | ||
|
||
apk add --update --no-cache --virtual .pynacl_deps build-base python3-dev libffi-dev openssl-dev linux-headers libxslt-dev rust cargo | ||
apk add --update --no-cache libffi openssl libxslt libstdc++ | ||
apk add --update --no-cache nginx sshpass runit openssh-keygen openssh-client git dcron logrotate curl rsync | ||
pip install --no-cache-dir -r /requirements-base.txt | ||
rm /requirements-base.txt | ||
apk del git | ||
apk del .pynacl_deps | ||
rm /etc/nginx/conf.d/default.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# ansible==2.8.3 | ||
git+https://github.com/arenadata/[email protected] | ||
coreapi | ||
django | ||
django-cors-headers | ||
django-filter | ||
django-rest-swagger | ||
djangorestframework | ||
django-background-tasks | ||
social-auth-app-django | ||
git+git://github.com/arenadata/django-generate-secret-key.git | ||
jinja2 | ||
markdown | ||
mitogen | ||
pyyaml | ||
ruyaml | ||
toml | ||
uwsgi | ||
version_utils | ||
ruyaml | ||
yspec | ||
# Custom bundle libs | ||
apache-libcloud | ||
jmespath | ||
lxml | ||
pycrypto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"version": "2020.04.24.11", | ||
"commit_id": "c827ccf" | ||
"version": "2021.05.12.14", | ||
"commit_id": "20b2b8b3" | ||
} |
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.