Skip to content

Commit

Permalink
0.0.571
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Sep 25, 2024
1 parent 44a0afc commit 176a2d3
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,18 @@ services:
- 'HASURA_METADATA=1'
- 'HASURA_ENDPOINT=${DEEP_HASURA_STORAGE_HASURA_ENDPOINT}'
- 'HASURA_GRAPHQL_ADMIN_SECRET=${DEEP_HASURA_STORAGE_HASURA_GRAPHQL_ADMIN_SECRET}'
- 'S3_ENDPOINT: http://deep-minio:9000'
- 'S3_ACCESS_KEY: ${DEEP_MINIO_ROOT_USER}'
- 'S3_SECRET_KEY: ${DEEP_MINIO_ROOT_PASSWORD}'
- 'S3_BUCKET: "default"'
- 'S3_ROOT_FOLDER: "f215cf48-7458-4596-9aa5-2159fc6a3caf"'
- 'POSTGRES_MIGRATIONS=1'
- 'POSTGRES_MIGRATIONS_SOURCE=${DEEP_HASURA_STORAGE_POSTGRES_MIGRATIONS_SOURCE}'
- 'DATABASE_URL=${DEEP_HASURA_STORAGE_POSTGRES_MIGRATIONS_SOURCE}'
- 'GRAPHQL_ENGINE_BASE_URL=${DEEP_HASURA_STORAGE_HASURA_ENDPOINT}'
- 'GRAPHQL_ENDPOINT=${DEEP_HASURA_STORAGE_HASURA_ENDPOINT}'
- 'JWT_SECRET=${DEEP_HASURA_GRAPHQL_JWT_SECRET}'
- 'CLAMAV_SERVER: tcp://deep-clamd:3310'
command: serve
logging:
driver: "json-file"
Expand Down Expand Up @@ -143,6 +149,12 @@ services:
options:
max-size: 10m
max-file: "3"
clamd:
container_name: deep-clamd
image: nhost/clamav:0.1.2
restart: unless-stopped
ports:
- '3310:3310'
volumes:
db-data:
name: deep-db-data
Expand Down
1 change: 1 addition & 0 deletions imports/packager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { DeepClient } from './client.js';
import type { DeepSerialOperation } from './client.js';
import { Id, Link, minilinks, MinilinksResult } from './minilinks.js';
import { serializeError } from 'serialize-error';
import { delay } from './promise.js';

const debug = Debug('deeplinks:packager');
const log = debug.extend('log');
Expand Down
1 change: 1 addition & 0 deletions migrations/1658909585601-hasura-storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const up = async () => {
await api.sql(sql`
CREATE SCHEMA IF NOT EXISTS storage;
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public;
CREATE EXTENSION IF NOT EXISTS citext WITH SCHEMA public;
BEGIN;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/deeplinks",
"version": "0.0.570",
"version": "0.0.571",
"license": "Unlicense",
"type": "module",
"main": "import.js",
Expand Down

0 comments on commit 176a2d3

Please sign in to comment.