-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into hasura-metadata
- Loading branch information
Showing
28 changed files
with
496 additions
and
196 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
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,2 @@ | ||
fix: | ||
- "Fix and consolidate behavior for active schedules - [#86](https://github.com/PrefectHQ/server/issues/86)" |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
enhancement: | ||
- "Reduce size of `prefecthq/apollo` Docker image - [#3215](https://github.com/PrefectHQ/server/pull/76)" | ||
|
||
contributor: | ||
- "[Juan Calderon-Perez](https://github.com/gabrielcalderon)" |
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,5 @@ | ||
fix: | ||
- "Fix agent API calling `prefect.api.models` instead of `prefect.models` - [#89](https://github.com/PrefectHQ/server/pull/89)" | ||
|
||
enhancement: | ||
- "Replace calls to `prefect_server.database.models` with `prefect.models` - [#89](https://github.com/PrefectHQ/server/pull/89)" |
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,2 @@ | ||
node_modules | ||
npm-debug.log |
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,15 +1,30 @@ | ||
FROM node:10.15.0 | ||
ARG VERSION | ||
ENV PREFECT_SERVER_VERSION=${VERSION} | ||
ARG NODE_VERSION=${NODE_VERSION:-10.15.0} | ||
FROM node:${NODE_VERSION}-slim | ||
|
||
COPY . /apollo | ||
# Prefect Version, default to MASTER | ||
ARG PREFECT_VERSION | ||
ENV PREFECT_VERSION=${PREFECT_VERSION:-master} | ||
|
||
RUN \ | ||
cd /apollo \ | ||
&& npm ci && npm run build | ||
# Prefect Server Version, default to MASTER | ||
ARG PREFECT_SERVER_VERSION | ||
ENV PREFECT_SERVER_VERSION=${PREFECT_SERVER_VERSION:-master} | ||
|
||
ARG RELEASE_TIMESTAMP | ||
ENV RELEASE_TIMESTAMP=$RELEASE_TIMESTAMP | ||
|
||
# Image Labels | ||
LABEL maintainer="[email protected]" | ||
LABEL org.label-schema.schema-version = "1.0" | ||
LABEL org.label-schema.name="apollo" | ||
LABEL org.label-schema.url="https://www.prefect.io/" | ||
LABEL org.label-schema.version=${PREFECT_VERSION} | ||
LABEL org.label-schema.build-date=${RELEASE_TIMESTAMP} | ||
|
||
WORKDIR /apollo | ||
COPY post-start.sh . | ||
RUN chmod +x post-start.sh | ||
COPY . . | ||
|
||
RUN npm ci && \ | ||
npm run build && \ | ||
chmod +x post-start.sh | ||
|
||
CMD ["npm", "run", "serve"] |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import prefect_server.database.hasura | ||
import prefect_server.database.orm | ||
import prefect_server.database.models | ||
import prefect_server.database.postgres |
Oops, something went wrong.