Installation

Getting started is easy. Follow these steps to install and set up the project.

First, clone the repository:

git clone --depth 1 git@github.com:mdobydullah/jetshift.git

Then, navigate to the project directory:

cd jetshift

You can run the project with docker and without docker.

With Docker

To run the project with docker, run the following command

docker compose up -d

Web servers

Web: http://localhost:8080
Luigid: http://localhost:8082

Without Docker

Install Python on your machine and create virtual environment

python -m venv venv

Activate the virtual environment

# linux
source venv/bin/activate

# windows
venv\Scripts\activate

# windows (gitbash)
source venv/Scripts/activate

Install requirements

pip install -e .

Run dev servers

dev

Web servers

Web: http://localhost:8080
Luigid: http://localhost:8082