Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 850 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 850 Bytes

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"