Minimal Node.js backend for InterimApp.
- Node.js (recommended v18+)
- npm or yarn
- Clone the repository
- Install dependencies
npm install- Create a
.envfile in the project root with your environment variables (Firestore/MySQL credentials).
Start the app with:
node App.jsOr use npm start if configured in package.json.
- App.js
- config/
- firestore.js
- mySql.js
- swagger.js
- src/
- controllers/
- queries/
- routes/
- services/
Swagger is configured under config/swagger.js. If enabled, visit /api-docs in your running app.
- Keep secrets out of source control;
.envis ignored via.gitignore. - Update
config/*with your database credentials.