Skip to content

AdamAlam/zoomers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Starting the Frontend (NextJS)

  • Ensure you have the .env.local file in the fronted directory

Install dependencies

npm install

Run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Starting the Backend (FastAPI)

  • Ensure you have the .env file in the backend directory

CD into Backend Directory

cd backend

Create virtual environment

python -m venv env

Activate venv

MacOS/Linux:

source ./env/bin/activate

Windows Powershell:

.\env\Scripts\Activate.ps1

Windows Bash:

source ./env/Scripts/activate

Install Dependencies

pip install -r requirements.txt

Start the application

uvicorn main:app --reload

Open http://localhost:8000 with your browser to see the result.

About

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •