Skip to content

Commit

Permalink
Production deploy (#3831)
Browse files Browse the repository at this point in the history
Co-authored-by: ollie <[email protected]>
Co-authored-by: Ian Jones <[email protected]>
Co-authored-by: Rory Doak <[email protected]>
  • Loading branch information
4 people authored Oct 21, 2024
1 parent bcf4ba7 commit 72634cc
Show file tree
Hide file tree
Showing 25 changed files with 1,583 additions and 196 deletions.
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

0 comments on commit 72634cc

Please sign in to comment.