mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-14 00:15:09 -05:00
feat(bun): upgrade to bun, reduce docker image size by 95%, upgrade docs & ci (#371)
* migrate to bun * added envvars to drizzle * upgrade bun devcontainer feature to a valid one * added bun, docker not working * updated envvars, updated to bunder and esnext modules * fixed build, reinstated otel * feat: optimized multi-stage docker images * add coerce for boolean envvar * feat: add docker-compose configuration for local LLM services and remove legacy Dockerfile and entrypoint script * feat: add docker-compose files for local and production environments, and implement GitHub Actions for Docker image build and publish * refactor: remove unused generateStaticParams function from various API routes and maintain dynamic rendering * cleanup * upgraded bun * updated ci * fixed build --------- Co-authored-by: Aditya Tripathi <aditya@climactic.co>
This commit is contained in:
@@ -3,6 +3,7 @@ import { createLogger } from '@/lib/logs/console-logger'
|
||||
import { WorkflowState } from '@/stores/workflows/workflow/types'
|
||||
import { db } from '@/db'
|
||||
import { userStats, workflow as workflowTable } from '@/db/schema'
|
||||
import { env } from '../env'
|
||||
|
||||
const logger = createLogger('WorkflowUtils')
|
||||
|
||||
@@ -21,8 +22,7 @@ export async function updateWorkflowRunCounts(workflowId: string, runs: number =
|
||||
|
||||
// Get the origin from the environment or use direct DB update as fallback
|
||||
const origin =
|
||||
process.env.NEXT_PUBLIC_APP_URL ||
|
||||
(typeof window !== 'undefined' ? window.location.origin : '')
|
||||
env.NEXT_PUBLIC_APP_URL || (typeof window !== 'undefined' ? window.location.origin : '')
|
||||
|
||||
if (origin) {
|
||||
// Use absolute URL with origin
|
||||
|
||||
Reference in New Issue
Block a user