Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 1.53 KB

SETUP-GUIDE.md

File metadata and controls

65 lines (41 loc) · 1.53 KB

ClientWords Setup Guide

This guide will help you set up your own instance of ClientWords.

Prerequisites

Local Development

Steps

  1. Clone the repository:
  git clone https://github.com/n3rm4121/clientwords.git
  cd clientwords
  1. Install dependencies:
   npm install
   Create a .env file in the root directory based on .env.sample:
   cp .env.sample .env
  1. Start the development server:
npm run dev

Open http://localhost:3000 to view ClientWords in development mode.

Docker Setup

Docker Compose

Refer to the docker-compose.yml file to set up the environment using Docker.

Dockerfile

Refer to the Dockerfile for building the Docker image.

Running with Docker

  1. Build and start the services:
docker-compose up --build
  1. Open http://localhost:3000 to view ClientWords in development mode.

Building for Production

To build the application for production, use:

npm run build
npm start