Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

Frontend Application


Tech Stack

  • Framework: React
  • Build Tool: Vite
  • Styling: Tailwind CSS (update if different)
  • API Communication: Axios / Fetch

Project Structure

frontend/
│
├── src/
│   ├── components/      # Reusable UI components
│   ├── pages/           # Route pages
│   ├── services/        # API calls
│   └── main.jsx         # Entry point
│
├── public/
├── package.json
└── vite.config.js

Setup & Installation

1. Navigate to frontend

cd frontend

2. Install dependencies

npm install

3. Run development server

npm run dev

App runs at:

http://localhost:5173

Backend Service


Tech Stack

  • Language: Python
  • Framework: FastAPI
  • Server: Uvicorn
  • Containerization: Docker

Project Structure

backend/
│
├── app/                # Main application code
├── requirements.txt    # Python dependencies
├── Dockerfile          # Container configuration
├── .env                # Environment variables
└── run.py              # Entry point

Setup & Installation

1. Clone the repository

git clone <repo-url>
cd backend

2. Create virtual environment

python -m venv venv
source venv/bin/activate   # Linux / Mac
venv\Scripts\activate      # Windows

3. Install dependencies

pip install -r requirements.txt

4. Run the server

uvicorn app.main:app --reload

Server runs at:

http://127.0.0.1:8000

API docs:

http://127.0.0.1:8000/docs

Environment Variables

Create a .env file and configure:

DATABASE_URL=
SECRET_KEY=
DEBUG=True

About

problem statement 3 of code init 2026

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages