···5WORKDIR /app
67# Copy root workspace files
8-COPY package.json bun.lockb ./
910# Copy turbo.json
11COPY turbo.json ./
···22RUN bun install
2324# Build workspace packages (if needed)
25-RUN bun run build --filter=@teal/db
26-RUN bun run build --filter=@teal/lexicons
2728# Build the aqua app
29WORKDIR /app/apps/aqua
···5WORKDIR /app
67# Copy root workspace files
8+COPY package.json ./
910# Copy turbo.json
11COPY turbo.json ./
···22RUN bun install
2324# Build workspace packages (if needed)
25+RUN bun run build --filter=@teal/db --filter !@teal/amethyst
26+RUN bun run build --filter=@teal/lexicons --filter !@teal/amethyst
2728# Build the aqua app
29WORKDIR /app/apps/aqua
+1-1
apps/aqua/src/index.ts
···84 logger.info(
85 `Listening on ${
86 info.address == '::1'
87- ? 'http://0.0.0.0'
88 : // TODO: below should probably be https://
89 // but i just want to ctrl click in the terminal
90 'http://' + info.address
···84 logger.info(
85 `Listening on ${
86 info.address == '::1'
87+ ? `http://${env.HOST}`
88 : // TODO: below should probably be https://
89 // but i just want to ctrl click in the terminal
90 'http://' + info.address
···1import { defineConfig } from "drizzle-kit";
2+import dotenv from "dotenv";
3+import dotenvExpand from "dotenv-expand";
4+5+//Loads from root .env
6+dotenvExpand.expand(dotenv.config({ path: '../../.env' }));
7+//Or can be overridden by .env in the current folder
8+dotenvExpand.expand(dotenv.config());
9+10+1112export default defineConfig({
13 dialect: "postgresql",