Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion backend/queries/profileQueries-fixed.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Profile queries for Lookbook - Compatible with segundo-db schema
// Follows test-pilot-server query pattern
// Follows the platform server query pattern

const { pool } = require('../db/dbConfig');

Expand Down
2 changes: 1 addition & 1 deletion backend/queries/profileQueries.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Profile queries for Lookbook - Compatible with segundo-db schema
// Follows test-pilot-server query pattern
// Follows the platform server query pattern

const { pool } = require('../db/dbConfig');

Expand Down
2 changes: 1 addition & 1 deletion backend/queries/profileQueries.js.backup
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Profile queries for Lookbook
// Follows test-pilot-server query pattern
// Follows the platform server query pattern

const { pool } = require('../db/dbConfig');

Expand Down
2 changes: 1 addition & 1 deletion backend/queries/projectQueries.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Project queries for Lookbook
// Follows test-pilot-server query pattern
// Follows the platform server query pattern

const { pool } = require('../db/dbConfig');

Expand Down
2 changes: 1 addition & 1 deletion backend/queries/projectQueries.js.backup
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Project queries for Lookbook
// Follows test-pilot-server query pattern
// Follows the platform server query pattern

const { pool } = require('../db/dbConfig');

Expand Down
2 changes: 1 addition & 1 deletion backend/routes/profiles.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Profile routes for Lookbook API
// Following test-pilot-server pattern
// Following the platform server pattern

const express = require('express');
const router = express.Router();
Expand Down
2 changes: 1 addition & 1 deletion backend/routes/projects.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Project routes for Lookbook API
// Following test-pilot-server pattern
// Following the platform server pattern

const express = require('express');
const router = express.Router();
Expand Down
2 changes: 1 addition & 1 deletion backend/server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Lookbook Backend Server
// Express + PostgreSQL API following test-pilot-server patterns
// Express + PostgreSQL API following the platform server patterns

require('dotenv').config();
const express = require('express');
Expand Down