- Node.js 18.x or later
- Docker and Docker Compose
- npm or yarn package manager
- Clone the repository:
git clone https://github.com/IEEECS-VIT/echo-web
cd echo-web- Start the development server:
docker-compose upThe application will be available at http://localhost:3000
- Install dependencies:
npm install- Start the development server:
npm run dev- Build the Docker image:
docker build -t echo-web .- Run the container:
docker run -p 3000:3000 echo-web- Build the application:
npm run build- Start the production server:
npm startnpm run dev- Start development servernpm run build- Build for productionnpm start- Start production servernpm run lint- Run ESLint
docker-compose up- Start development environmentdocker-compose down- Stop development environmentdocker build -t echo-web .- Build production imagedocker run -p 3000:3000 echo-web- Run production container