Livo - Setup Guide
This project is built using Django (Python web framework).
Follow the steps below to set up the project from scratch on your local machine.
PREREQUISITES
Make sure you have installed:
- Python 3.10+
- pip
- Git
PROJECT SETUP FROM SCRATCH
- Create a project directory
Create a folder anywhere in your system:
Final_Project/
Then open terminal inside that folder.
- Create a virtual environment
Inside Final_Project, run:
python -m venv .venv
- Activate virtual environment
Windows (PowerShell): .venv\Scripts\activate
Mac/Linux: source .venv/bin/activate
- Clone the repository
Inside Final_Project folder, run:
git clone https://github.com/fataharul/livo.git
Go into the project folder:
cd livo
- Install dependencies
pip install -r requirements.txt
- Apply database migrations
python manage.py makemigrations python manage.py migrate
- Run the development server
python manage.py runserver
Open in browser: http://127.0.0.1:8000/