Skip to content

Getting Started

Arya Soni edited this page May 12, 2024 · 4 revisions

Getting Started

Discover all available npm commands to manage your project.

Development

To work on the application locally:

npm run dev

Build

Create an optimized build for production:

npm run build

Run

Launch your application on a server:

npm run start

Docker Commands

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.

Clone this wiki locally