Compare commits
2 commits
57dee7870a
...
999ecc4492
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
999ecc4492 | ||
|
|
d45f382b08 |
2 changed files with 4 additions and 4 deletions
|
|
@ -6,7 +6,7 @@ WORKDIR /app
|
|||
COPY package*.json ./
|
||||
|
||||
# Install dependencies
|
||||
RUN npm install
|
||||
RUN npm install --legacy-peer-deps
|
||||
|
||||
# Copy source
|
||||
COPY . .
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@ interface DevUser {
|
|||
|
||||
const DEV_USERS: DevUser[] = [
|
||||
{ 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: 'cultivator@demo.local', password: 'demo1234', name: 'Mike Thompson', role: 'CULTIVATOR', color: 'bg-green-500' },
|
||||
{ email: 'worker@demo.local', password: 'demo1234', name: 'Alex Rivera', role: 'WORKER', color: 'bg-blue-500' },
|
||||
{ email: 'sarah@demo.local', password: 'demo1234', name: 'Sarah Chen (Manager)', role: 'MANAGER', color: 'bg-purple-500' },
|
||||
{ email: 'mike@demo.local', password: 'demo1234', name: 'Mike Thompson (Grower)', role: 'GROWER', color: 'bg-green-500' },
|
||||
{ email: 'alex@demo.local', password: 'demo1234', name: 'Alex Rivera (Staff)', role: 'STAFF', color: 'bg-blue-500' },
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue