Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

docs: fix hubspot spelling, remove outdated quickstart video #1736

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 11 additions & 0 deletions .yarn/versions/484db390.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
undecided:
- supaglue
- api
- mgmt-ui
- sync-worker
- "@supaglue/core"
- "@supaglue/db"
- "@supaglue/schemas"
- "@supaglue/sync-workflows"
- "@supaglue/types"
- "@supaglue/utils"
20 changes: 0 additions & 20 deletions Dockerfile.dev

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ https://github.com/supaglue-labs/supaglue/assets/1925713/8cc42b76-0118-40fb-950c
### Run Supaglue locally

```shell
git clone -b v0.16.9 https://github.com/supaglue-labs/supaglue.git && cd supaglue
git clone -b v0.16.10 https://github.com/supaglue-labs/supaglue.git && cd supaglue
./scripts/create_quickstart_env.sh
docker compose up
```
Expand Down
2 changes: 1 addition & 1 deletion apps/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ createTerminus(server, {
return;
},
},
timeout: process.env.ENVIRONMENT === 'development' ? 0 : 10000,
timeout: 10000,
beforeShutdown: async () => {
logger.info('Server is shutting down');
metricsServer.close();
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "0.16.9",
"version": "0.16.10",
"private": true,
"packageManager": "[email protected]",
"type": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion apps/mgmt-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mgmt-ui",
"version": "0.16.9",
"version": "0.16.10",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion apps/sync-worker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sync-worker",
"version": "0.16.9",
"version": "0.16.10",
"private": true,
"packageManager": "[email protected]",
"dependencies": {
Expand Down
1 change: 0 additions & 1 deletion depot.json

This file was deleted.

53 changes: 11 additions & 42 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,72 +45,40 @@ services:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-supaglue}

api:
build:
context: .
dockerfile: ./Dockerfile.dev
args:
- APP=api
image: node:18-bullseye
ports:
- '8080:8080'
depends_on:
postgres:
condition: service_started
init:
condition: service_completed_successfully
working_dir: /workspace
develop:
watch:
- action: sync
path: ./apps/api
target: /workspace/apps/api
ignore:
- node_modules/
- action: sync
path: ./packages
target: /workspace/packages
- action: rebuild
path: package.json
- action: rebuild
path: ./apps/api/package.json
volumes:
- .:/app
working_dir: /app
environment:
<<: [*common-env, *fe-api-common-env]
SUPAGLUE_API_PORT: ${SUPAGLUE_API_PORT:-8080}
SUPAGLUE_CORS_ORIGIN: ${SUPAGLUE_CORS_ORIGIN:-http://localhost:3000}
SUPAGLUE_SYNC_PERIOD_MS:
ADMIN_PASSWORD: ${ADMIN_PASSWORD:-admin}
restart: on-failure
command: /bin/sh -c "yarn workspace api start"
command: /bin/sh -c "./apps/api/scripts/start_dev.sh"

sync-worker:
build:
context: .
dockerfile: ./Dockerfile.dev
args:
- APP=sync-worker
image: node:18-bullseye
depends_on:
postgres:
condition: service_started
init:
condition: service_completed_successfully
working_dir: /workspace
develop:
watch:
- action: sync
path: ./apps/sync-worker
target: /workspace/apps/sync-worker
ignore:
- node_modules/
- action: sync
path: ./packages
target: /workspace/packages
- action: rebuild
path: package.json
- action: rebuild
path: ./apps/sync-worker/package.json
volumes:
- .:/app
working_dir: /app
environment:
<<: *common-env
restart: on-failure
command: /bin/sh -c "yarn workspace sync-worker start"
command: /bin/sh -c "./apps/sync-worker/scripts/start_dev.sh"

temporal:
image: alpine:3.18.0
Expand Down Expand Up @@ -141,6 +109,7 @@ services:
- sh
- -c
- |
yarn install
yarn workspace @supaglue/db prisma migrate dev
yarn workspace @supaglue/db prisma db seed
yarn workspace api init-temporal
Expand Down
4 changes: 1 addition & 3 deletions docs/docs/api/v2/actions/actions-api.info.mdx

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

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

2 changes: 1 addition & 1 deletion docs/docs/api/v2/crm/create-account.api.mdx

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

Loading