@loopstack/app-bundle-template
Advanced tools
+6
-0
| # @loopstack/app-bundle-template | ||
| ## 0.20.0 | ||
| ### Minor Changes | ||
| - [#114](https://github.com/loopstack-ai/loopstack/pull/114) [`5d2eef9`](https://github.com/loopstack-ai/loopstack/commit/5d2eef948106deccd5ef706ec1c3fbce178d0154) Thanks [@jakobklippel](https://github.com/jakobklippel)! - Migrate to workflow core v2 | ||
| ## 0.19.4 | ||
@@ -4,0 +10,0 @@ |
@@ -14,6 +14,6 @@ services: | ||
| postgres: | ||
| image: ghcr.io/loopstack-ai/postgres:16.9-alpine | ||
| image: postgres:16.9-alpine | ||
| restart: unless-stopped | ||
| env_file: | ||
| - ./backend/.env | ||
| # env_file: | ||
| # - ./backend/.env | ||
| environment: | ||
@@ -27,2 +27,3 @@ POSTGRES_DB: ${DATABASE_NAME:-postgres} | ||
| - postgres_data:/var/lib/postgresql/data | ||
| - ./docker/postgres/scripts:/docker-entrypoint-initdb.d | ||
| networks: | ||
@@ -29,0 +30,0 @@ - monorepo-network |
| -- Set timezone to UTC | ||
| SET timezone = 'UTC'; | ||
| -- Create ltree extension | ||
| CREATE EXTENSION IF NOT EXISTS ltree; | ||
| -- Create e2e_test database | ||
@@ -15,3 +12,2 @@ CREATE DATABASE e2e_test; | ||
| RAISE NOTICE '- Timezone set to UTC'; | ||
| RAISE NOTICE '- ltree extension installed'; | ||
| END $$; |
+1
-1
| { | ||
| "name": "@loopstack/app-bundle-template", | ||
| "version": "0.19.4", | ||
| "version": "0.20.0", | ||
| "scripts": { | ||
@@ -5,0 +5,0 @@ "build:all": "npm run build:backend && npm run build:studio", |
| FROM postgres:16.9-alpine | ||
| COPY scripts/01-initialize-postgres.sql /docker-entrypoint-initdb.d/ |
7888
1.61%9
-10%