feat: initial ImportEx API setup with Hono + Drizzle + PostgreSQL
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
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:
17
.gitea/workflows/deploy-dev.yml
Normal file
17
.gitea/workflows/deploy-dev.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Deploy to Development
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Trigger Coolify Deploy (Dev)
|
||||
run: |
|
||||
curl --request GET \
|
||||
--url "${{ secrets.COOLIFY_WEBHOOK_DEV }}" \
|
||||
--header "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \
|
||||
--fail
|
||||
Reference in New Issue
Block a user