Skip to content

IEEECS-VIT/echo-web

Repository files navigation

Prerequisites

  • Node.js 18.x or later
  • Docker and Docker Compose
  • npm or yarn package manager

Getting Started

Development with Docker

  1. Clone the repository:
git clone https://github.com/IEEECS-VIT/echo-web
cd echo-web
  1. Start the development server:
docker-compose up

The application will be available at http://localhost:3000

Development without Docker

  1. Install dependencies:
npm install
  1. Start the development server:
npm run dev

Production Build

Using Docker

  1. Build the Docker image:
docker build -t echo-web .
  1. Run the container:
docker run -p 3000:3000 echo-web

Without Docker

  1. Build the application:
npm run build
  1. Start the production server:
npm start

Available Scripts

  • npm run dev - Start development server
  • npm run build - Build for production
  • npm start - Start production server
  • npm run lint - Run ESLint

Docker Commands

  • docker-compose up - Start development environment
  • docker-compose down - Stop development environment
  • docker build -t echo-web . - Build production image
  • docker run -p 3000:3000 echo-web - Run production container

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 8

Languages