Comrade
  • Introduction
  • Installation
    • Using Docker
    • Using pip
    • From Source
  • Configuration
    • Cluster Discovery
    • Parameters and Environment Variables
  • Development
  • Screens
    • Main Screen
      • Index Settings
    • REST
  • Other
    • Contributing
    • Changelog
    • Roadmap
Powered by GitBook
On this page
  • Starting the server
  • Starting the client

Was this helpful?

  1. Installation

From Source

Mostly for development purpose

This guide assumes your computer is suited with: node >= 12 , python >= 3.7 and pipenv

# Clone the repo
git clone git@github.com:moshe/elasticsearch-comrade.git

# Install server deps
cd elasticsearch-comrade
pipenv install -e . --skip-lock

# Install client deps
cd client
npm install

Now you should open two terminals, one for running the server and the second for serving the client

Starting the server

pipenv run python index.py  # In the root of the project 

Starting the client

cd client
npm run serve
PreviousUsing pipNextConfiguration

Last updated 4 years ago

Was this helpful?