We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d6efe commit b5a9900Copy full SHA for b5a9900
seed-data.js
@@ -1,8 +1,6 @@
1
// Seed script for FlowOps - Run with: node seed-data.js
2
-
3
-// Change to localhost for local testing, or use Azure backend for production
4
-const API_URL = process.env.API_URL || 'http://localhost:3001/api';
5
-// const API_URL = 'https://flowops-backend.azurewebsites.net/api';
+// Use API_URL=http://localhost:3001/api node seed-data.js for local testing
+const API_URL = process.env.API_URL || 'https://flowops-backend.azurewebsites.net/api';
6
7
async function seedData() {
8
console.log('🌱 Seeding FlowOps database...\n');
0 commit comments