Start the admin and store development servers
Start both the admin and store Next.js development servers for the lemnArt project.
Before starting, verify:
Node modules installed:
admin/node_modules exists; if not, run cd /Users/cristian/Development/lemnArt/admin && npm installstore/node_modules exists; if not, run cd /Users/cristian/Development/lemnArt/store && npm installEnvironment files present:
admin/.env exists; warn the user if missingstore/.env exists; warn the user if missingPrisma client generated:
admin/node_modules/.prisma/client exists; if not, run cd /Users/cristian/Development/lemnArt/admin && npx prisma generateRun both servers in the background:
cd /Users/cristian/Development/lemnArt/admin && npm run dev
(Admin runs on port 3001)
cd /Users/cristian/Development/lemnArt/store && npm run dev
(Store runs on port 3002)
Start each server using the Bash tool with run_in_background: true so both run concurrently.
http://localhost:3001http://localhost:3002lsof -i :3001 and lsof -i :3002.