Compare commits

..

2 commits

Author SHA1 Message Date
fullsizemalt
999ecc4492 fix: add --legacy-peer-deps to Dockerfile for React Three Fiber compatibility
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run
2025-12-17 01:59:53 -08:00
fullsizemalt
d45f382b08 fix: DevTools demo users now match actual seeded accounts 2025-12-17 01:59:37 -08:00
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install dependencies
RUN npm install RUN npm install --legacy-peer-deps
# Copy source # Copy source
COPY . . COPY . .

View file

@ -14,9 +14,9 @@ interface DevUser {
const DEV_USERS: DevUser[] = [ const DEV_USERS: DevUser[] = [
{ email: 'admin@runfoo.run', password: 'password123', name: 'Travis (Owner)', role: 'OWNER', color: 'bg-emerald-500' }, { email: 'admin@runfoo.run', password: 'password123', name: 'Travis (Owner)', role: 'OWNER', color: 'bg-emerald-500' },
{ email: 'manager@demo.local', password: 'demo1234', name: 'Sarah Chen', role: 'MANAGER', color: 'bg-purple-500' }, { email: 'sarah@demo.local', password: 'demo1234', name: 'Sarah Chen (Manager)', role: 'MANAGER', color: 'bg-purple-500' },
{ email: 'cultivator@demo.local', password: 'demo1234', name: 'Mike Thompson', role: 'CULTIVATOR', color: 'bg-green-500' }, { email: 'mike@demo.local', password: 'demo1234', name: 'Mike Thompson (Grower)', role: 'GROWER', color: 'bg-green-500' },
{ email: 'worker@demo.local', password: 'demo1234', name: 'Alex Rivera', role: 'WORKER', color: 'bg-blue-500' }, { email: 'alex@demo.local', password: 'demo1234', name: 'Alex Rivera (Staff)', role: 'STAFF', color: 'bg-blue-500' },
]; ];
/** /**