Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions backend/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ const fileUpload = require('express-fileupload');
// create our Express app
const app = express();


app.get('/', (req, res) => {
res.json({
success: true,
message: 'API is running successfully 🚀',
});
});

app.use(
cors({
origin: true,
Expand Down
Loading