Add Dockerized FastNext stack template with backend and frontend
Implemented a full-stack template combining Next.js (frontend), FastAPI (backend), and PostgreSQL. Included Docker configurations for development and production, environment file templates, Makefile commands, and initial setup for database migrations and builds. The stack is production-ready and supports hot-reloading for local development.
This commit is contained in:
7
frontend/src/types/api.d.ts
vendored
Normal file
7
frontend/src/types/api.d.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
declare namespace API {
|
||||
interface ErrorResponse {
|
||||
detail: string;
|
||||
}
|
||||
|
||||
// Add more types as you develop your API
|
||||
}
|
||||
Reference in New Issue
Block a user