Skip to content

Aytida-dev/Predixion-AI---assignment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Frontend

setup

open a new terminal

cd frontend
npm install

populate the .env using .env.sample

build

npm run build

start

npm run preview

frontend will be running on http://localhost:5173

Backend

open a new terminal

cd backend

Start the venv

python3 -m venv venv
source venv/bin/activate

On windows

python -m venv venv
venv\Scripts\activate

Install the requirements

pip install -r requirements.txt

populate the .env using .env.sample

Run the server

uvicorn main:app --reload

backend will be running on http://localhost:8000