main
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled

This commit is contained in:
Harun CAN
2026-05-09 05:57:56 +02:00
parent 3d36926fe9
commit 58832e99d1
17 changed files with 1469 additions and 59 deletions
+14
View File
@@ -0,0 +1,14 @@
const axios = require('axios');
async function main() {
try {
const res = await axios.post('http://localhost:3000/api/v1/auth/login', {
email: 'admin@contentgen.ai',
password: 'password123'
});
console.log(JSON.stringify(res.data, null, 2));
} catch(e) {
console.error(e.response?.data || e.message);
}
}
main();