Skip to content

alexandrebedel/SmartBin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Smart Bin

Here you can find the core source and documents of our "Smart Bin" project

AI related code

Back-end related code

Overall documentation

API Documentation

Getting started

To get started on this project please follow the READMEs on each parts of the project

Setting up the AI

Setting up the backend

Quick start

# Please run the following commands line by line, at the root of the repo
# if you are on linux/mac
#
cd backend/ && npm install && cd - > /dev/null && echo "✅ Backend packages installed"
python3.11 -m venv venv && source venv/bin/activate && echo "✅ Py environment setup successful"
pip install -r requirements.txt && cd - > /dev/null && echo "✅ Python packages installed successfully"