-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
63 additions
and
9 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
Submodule api
updated
23 files
+2 −0 | .dockerignore | |
+4 −0 | .gitignore | |
+10 −1 | Dockerfile | |
+43 −0 | bin/beat | |
+1 −0 | bin/poller | |
+1 −0 | bin/scheduler | |
+20 −1 | src/mist/api/config.py | |
+1 −1 | src/mist/api/dummy/methods.py | |
+20 −8 | src/mist/api/logs/methods.py | |
+3 −0 | src/mist/api/logs/views.py | |
+8 −3 | src/mist/api/machines/models.py | |
+0 −0 | src/mist/api/notifications/__init__.py | |
+106 −0 | src/mist/api/notifications/channels.py | |
+137 −0 | src/mist/api/notifications/methods.py | |
+32 −0 | src/mist/api/notifications/models.py | |
+0 −0 | src/mist/api/portal/__init__.py | |
+77 −0 | src/mist/api/portal/models.py | |
+18 −0 | src/mist/api/portal/schedulers.py | |
+67 −0 | src/mist/api/portal/tasks.py | |
+7 −3 | src/mist/api/scripts/models.py | |
+3 −7 | src/mist/api/tasks.py | |
+5 −0 | src/mist/api/users/methods.py | |
+10 −1 | src/mist/api/views.py |
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,15 @@ | ||
FROM mist/mist:io-staging | ||
|
||
ARG VERSION_REPO=mistio/mist.io | ||
ARG VERSION_SHA | ||
ARG VERSION_NAME | ||
|
||
# Variables defined solely by ARG are accessible as environmental variables | ||
# during build but not during runtime. To persist these in the image, they're | ||
# redefined as ENV in addition to ARG. | ||
ENV VERSION_REPO=$VERSION_REPO \ | ||
VERSION_SHA=$VERSION_SHA \ | ||
VERSION_NAME=VERSION_NAME | ||
|
||
RUN echo "{\"sha\":\"$VERSION_SHA\",\"name\":\"$VERSION_NAME\",\"repo\":\"$VERSION_REPO\",\"modified\":false}" \ | ||
> /mist-version.json |
Submodule tests
updated
31 files
Submodule ui
updated
48 files