Compare commits
No commits in common. "b1e8b7a6642eb4699dfa3807cc17e5e04c33da05" and "247e5209004f6f09130cb5e92837cc5d58d3faf4" have entirely different histories.
b1e8b7a664
...
247e520900
6 changed files with 9 additions and 110 deletions
37
Dockerfile
37
Dockerfile
|
|
@ -1,37 +0,0 @@
|
||||||
# Build stage
|
|
||||||
FROM oven/bun:1 AS builder
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# Copy package files
|
|
||||||
COPY package.json .
|
|
||||||
COPY bun.lockb .
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
RUN bun install --frozen-lockfile
|
|
||||||
|
|
||||||
# Copy source code
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
# Build the application
|
|
||||||
RUN bun run build
|
|
||||||
|
|
||||||
# Production stage
|
|
||||||
# FROM debian:bookworm-slim
|
|
||||||
|
|
||||||
# WORKDIR /app
|
|
||||||
|
|
||||||
# # Copy only the compiled binary from builder
|
|
||||||
# COPY --from=builder /app/server .
|
|
||||||
|
|
||||||
# # Expose the port your app runs on
|
|
||||||
# EXPOSE 3000
|
|
||||||
|
|
||||||
# # Copy the entrypoint script
|
|
||||||
# COPY entrypoint.sh .
|
|
||||||
|
|
||||||
# Make the entrypoint script executable
|
|
||||||
RUN chmod +x ./entrypoint.sh
|
|
||||||
|
|
||||||
# Set the entrypoint
|
|
||||||
ENTRYPOINT ["./entrypoint.sh"]
|
|
||||||
|
|
@ -1,53 +0,0 @@
|
||||||
services:
|
|
||||||
api:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
# ports:
|
|
||||||
# - "${SERVER_PORT}:${SERVER_PORT}"
|
|
||||||
depends_on:
|
|
||||||
db:
|
|
||||||
condition: service_healthy
|
|
||||||
minio:
|
|
||||||
condition: service_healthy
|
|
||||||
environment:
|
|
||||||
NODE_ENV: production
|
|
||||||
DATABASE_URL: ${DATABASE_URL}
|
|
||||||
|
|
||||||
db:
|
|
||||||
image: postgres:latest
|
|
||||||
environment:
|
|
||||||
POSTGRES_USER: ${DB_USER}
|
|
||||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
||||||
POSTGRES_DB: ${DB_NAME}
|
|
||||||
# ports:
|
|
||||||
# - "${DB_PORT}:5432"
|
|
||||||
volumes:
|
|
||||||
- postgres_data:/var/lib/postgresql/data
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "pg_isready -U ${DB_USER} -d ${DB_NAME}"]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
start_period: 10s
|
|
||||||
|
|
||||||
minio:
|
|
||||||
image: minio/minio:latest
|
|
||||||
# ports:
|
|
||||||
# - "9000:9000"
|
|
||||||
# - "9001:9001"
|
|
||||||
environment:
|
|
||||||
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
|
|
||||||
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
|
|
||||||
command: server /data --console-address ":9001"
|
|
||||||
volumes:
|
|
||||||
- minio_data:/data
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "mc", "ready", "local"]
|
|
||||||
interval: 30s
|
|
||||||
timeout: 20s
|
|
||||||
retries: 3
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
postgres_data:
|
|
||||||
minio_data:
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Run migrations
|
|
||||||
bun run db:migrate
|
|
||||||
|
|
||||||
# Start the application
|
|
||||||
echo "Starting the application..."
|
|
||||||
./server
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
"db:generate": "drizzle-kit generate",
|
"db:generate": "drizzle-kit generate",
|
||||||
"db:migrate": "drizzle-kit migrate",
|
"db:migrate": "drizzle-kit migrate",
|
||||||
"db:push": "drizzle-kit push:pg",
|
"db:push": "drizzle-kit push:pg",
|
||||||
"build": "bun build --compile --minify-whitespace --minify-syntax --target bun --outfile server ./src/app.ts",
|
|
||||||
"dev": "bun run --watch src/app.ts"
|
"dev": "bun run --watch src/app.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
@ -15,7 +14,6 @@
|
||||||
"@elysiajs/cookie": "^0.8.0",
|
"@elysiajs/cookie": "^0.8.0",
|
||||||
"@elysiajs/cors": "^1.2.0",
|
"@elysiajs/cors": "^1.2.0",
|
||||||
"@elysiajs/swagger": "^1.2.0",
|
"@elysiajs/swagger": "^1.2.0",
|
||||||
"drizzle-kit": "^0.30.2",
|
|
||||||
"dotenv": "^16.4.7",
|
"dotenv": "^16.4.7",
|
||||||
"drizzle-orm": "^0.38.4",
|
"drizzle-orm": "^0.38.4",
|
||||||
"elysia": "latest",
|
"elysia": "latest",
|
||||||
|
|
@ -28,6 +26,7 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/pg": "^8.11.10",
|
"@types/pg": "^8.11.10",
|
||||||
"bun-types": "latest",
|
"bun-types": "latest",
|
||||||
|
"drizzle-kit": "^0.30.2",
|
||||||
"tsx": "^4.19.2"
|
"tsx": "^4.19.2"
|
||||||
},
|
},
|
||||||
"module": "src/app.js"
|
"module": "src/app.js"
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,7 @@ import { api } from "./api";
|
||||||
const allowedOrigins = [
|
const allowedOrigins = [
|
||||||
"http://localhost:5175",
|
"http://localhost:5175",
|
||||||
"http://localhost:5173",
|
"http://localhost:5173",
|
||||||
"https://dashboard.planpostai.com",
|
"https://your-production-site.com",
|
||||||
"https://canvas.planpostai.com",
|
|
||||||
];
|
];
|
||||||
|
|
||||||
const app = new Elysia({
|
const app = new Elysia({
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue