-
Notifications
You must be signed in to change notification settings - Fork 30
Getting Started
Arya Soni edited this page May 12, 2024
·
4 revisions
Discover all available npm commands to manage your project.
To work on the application locally:
npm run dev
Create an optimized build for production:
npm run build
Launch your application on a server:
npm run start
For container management, use these Docker Compose commands:
Start Staging Environment: Builds and runs the development setup:
docker build -t infraboard .
docker run -p 3000:3000 infraboard
These instructions ensure clarity and completeness for managing project environments.