everydaycats commited on
Commit
2b3949f
·
verified ·
1 Parent(s): adb3b9e

Update app.js

Browse files
Files changed (1) hide show
  1. app.js +4 -0
app.js CHANGED
@@ -11,6 +11,10 @@ const supabase = createClient(process.env.SUPABASE_URL,
11
  app.use(cors());
12
  app.use(express.json());
13
 
 
 
 
 
14
  const tempKeys = new Map(); // key -> { uid, projectId, createdAt }
15
 
16
  // --- MIDDLEWARE: AUTHENTICATION ---
 
11
  app.use(cors());
12
  app.use(express.json());
13
 
14
+
15
+ app.get('/', (req, res) => res.send('Gateway Active'));
16
+
17
+
18
  const tempKeys = new Map(); // key -> { uid, projectId, createdAt }
19
 
20
  // --- MIDDLEWARE: AUTHENTICATION ---