Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production deploy #3831

Merged
merged 11 commits into from
Oct 21, 2024
Merged
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ SLACK_WEBHOOK_URL=👻

# Metabase analytics
METABASE_PORT=5000
METABASE_API_KEY=👻
METABASE_URL_EXT=http://localhost:${METABASE_PORT}

# Minio object storage server
MINIO_PORT=9000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,12 @@ export async function findSession({
gql`
query FindSession($sessionId: uuid!, $email: String!) {
sessions: lowcal_sessions(
where: { id: { _eq: $sessionId }, email: { _eq: $email } }
where: {
id: { _eq: $sessionId }
email: { _eq: $email }
submitted_at: { _is_null: true }
deleted_at: { _is_null: true }
}
limit: 1
) {
flow_id
Expand Down
2 changes: 1 addition & 1 deletion api.planx.uk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@airbrake/node": "^2.1.8",
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#e73d702",
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#4cc216f",
"@types/isomorphic-fetch": "^0.0.36",
"adm-zip": "^0.5.10",
"aws-sdk": "^2.1467.0",
Expand Down
14 changes: 7 additions & 7 deletions api.planx.uk/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion e2e/tests/api-driven/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"packageManager": "[email protected]",
"dependencies": {
"@cucumber/cucumber": "^9.3.0",
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#e73d702",
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#4cc216f",
"axios": "^1.7.4",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
Expand Down
14 changes: 7 additions & 7 deletions e2e/tests/api-driven/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions e2e/tests/ui-driven/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
"postinstall": "./install-dependencies.sh"
},
"dependencies": {
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#e73d702",
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#4cc216f",
"axios": "^1.7.4",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^9.0.2",
"serve": "^14.2.1",
"serve": "^14.2.4",
"uuid": "^9.0.1"
},
"packageManager": "[email protected]",
Expand Down
57 changes: 23 additions & 34 deletions e2e/tests/ui-driven/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion editor.planx.uk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@mui/material": "^5.15.10",
"@mui/utils": "^5.15.11",
"@opensystemslab/map": "1.0.0-alpha.3",
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#e73d702",
"@opensystemslab/planx-core": "git+https://github.com/theopensystemslab/planx-core#4cc216f",
"@tiptap/core": "^2.4.0",
"@tiptap/extension-bold": "^2.0.3",
"@tiptap/extension-bubble-menu": "^2.1.13",
Expand Down
16 changes: 8 additions & 8 deletions editor.planx.uk/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading