Installation

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

First, clone the repository:

git clone --depth 1 https://github.com/jetshift/jetshift.git

Then, navigate to the project directory:

cd jetshift

Copy the environment file:

cp .env.example .env

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

JetShift: 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

# Git bash
source venv/Scripts/activate

Install requirements

pip install -e .

Run dev servers

jetshift dev
JetShift: http://localhost:8080
Luigid: http://localhost:8082