The MAD_Backend repository is the server-side component for the MAD (Mobile Application Development) project. It provides APIs and backend functionality for the corresponding frontend mobile app.
src/: Main source code containing API endpoints and business logic..gitignore: Specifies files and directories ignored by Git.package.json: Project dependencies and scripts.package-lock.json: Locks dependency versions.
If you’d like to contribute:
- Clone this repo
git clone https://github.com/Mario5T/MAD_Backend.git- Open it in VS Code
- Run:
npm installCreate a .env file (optional) to override defaults:
MONGO_URI="your-mongodb-atlas-uri"
MONGO_DB="mad_backend"
JWT_SECRET="your-secret"
Start the server:
npm run dev