https://github.com/appthrust/template-nextjs
Next.js template for the AppThrust platform
https://github.com/appthrust/template-nextjs
appthrust docker github-actions nextjs tailwindcss template typescript
Last synced: 10 days ago
JSON representation
Next.js template for the AppThrust platform
- Host: GitHub
- URL: https://github.com/appthrust/template-nextjs
- Owner: appthrust
- Created: 2026-04-16T02:26:52.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-06-09T05:48:45.000Z (about 1 month ago)
- Last Synced: 2026-06-09T07:26:21.037Z (about 1 month ago)
- Topics: appthrust, docker, github-actions, nextjs, tailwindcss, template, typescript
- Language: TypeScript
- Size: 128 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# AppThrust Next.js PostgreSQL template
This starter proves the AppThrust managed PostgreSQL path:
- AppThrust injects `DATABASE_URL` through `ComponentConnection`.
- The initial schema is applied through `DatabaseChange`.
- The Next.js app reads and writes `appthrust_demo_messages`.
The app does not run migrations on startup. For local development, apply
`db/migrations/0001_init.sql` to your PostgreSQL database, then set:
```bash
DATABASE_URL=postgresql://app:password@localhost:5432/app
```
Run locally:
```bash
npm install
npm run dev
```