# Running DebiAI in development mode

# Requirements

# Installation

First of all, you need to clone the DebiAI application project on your machine.

git clone https://github.com/debiai/debiai.git

# Frontend

Then run the frontend server.

cd debiai/frontend
npm install
npm run serve

# Backend

And finally, in a new terminal, run the backend server.

cd debiai/backend
pip install -r requirements.txt
python3 websrv.py

DebiAI will be available at the backend url : http://localhost:3000/ (opens new window)

The backend expect the frontend to be at the url http://localhost:8080/ (opens new window). If the frontend is running on a different url, you can edit the websrv.py file to change it.

If something went wrong, please let us know by posting an issue on Github (opens new window)

If you want to contribute to the project, you can follow our contributing guide (opens new window).