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