feat: initial ImportEx API setup with Hono + Drizzle + PostgreSQL
Some checks are pending
Deploy to Production / deploy (push) Waiting to run

- Hono server with CORS and logging middleware
- Drizzle ORM with PostgreSQL schema (users table)
- Environment config with Zod validation
- Dockerfile for production deployment
- Gitea Actions workflows for dev/main deployment to Coolify
- Health check route
This commit is contained in:
pius-coder
2026-04-15 23:27:26 +01:00
parent 325d9063e8
commit e671c107ca
16 changed files with 491 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
name: Deploy to Production
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Trigger Coolify Deploy (Prod)
run: |
curl --request GET \
--url "${{ secrets.COOLIFY_WEBHOOK_PROD }}" \
--header "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \
--fail