Skip to content

TechPertz/FinalIntf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Full-Stack Document approval and LLM compliance Project

A modern full-stack application built with Next.js, FastAPI, and Neo4j.

Video Link: https://drive.google.com/file/d/1nPlOuN-fHcD3wZN6EyJSEla9NQOL1Ptq/view?usp=sharing

πŸ—οΈ Architecture

  • Frontend: Next.js application with modern UI/UX
  • Backend: FastAPI service with Python
  • Database: Neo4j graph database

πŸš€ Running Instructions

1. Start Neo4j (Database)

# Start Neo4j using docker-compose
docker-compose up neo4j

Access Neo4j Browser at http://localhost:7474

  • Username: neo4j
  • Password: mypassword123

2. Setup Backend (FastAPI)

# Create and activate virtual environment
cd Backend
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install dependencies
pip install -r requirements.txt

# Download spaCy model
python -m spacy download en_core_web_lg

# Setup environment
cp .env.example .env
# Edit .env and add your OpenAI API key

# Start the server
uvicorn app.main:app --reload --port 8000

Backend API will be available at http://localhost:8000 Backend API endpoints will be available at http://localhost:8000/docs

3. Setup Frontend (Next.js)

# Install dependencies
cd Frontend
npm install

# Run initial setup (for SQLite database)
npm run setup

# Start development server
npm run dev

Frontend will be available at http://localhost:3000

πŸ“ Prerequisites

  • Python 3.9+
  • Node.js 18+
  • Docker (for Neo4j)
  • OpenAI API key

πŸ§ͺ Testing

Test Users

For testing purposes, the following user accounts are pre-configured:

Gmail Organization:

Interface Organization:

No Password required.

πŸ“ Project Structure

.
β”œβ”€β”€ Frontend/          # Next.js application
β”œβ”€β”€ Backend/           # FastAPI application
β”œβ”€β”€ docker-compose.yml # Docker composition (for Neo4j)
└── README.md         # This file

πŸ” Environment Variables

Backend (.env)

OPENAI_API_KEY=your_key_here
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=mypassword123

πŸ› οΈ Development Notes

  • Keep each component (Frontend, Backend, Neo4j) running in separate terminal windows
  • Backend requires the virtual environment to be activated for each new terminal session
  • Neo4j data persists in Docker volumes between restarts

πŸ“ License

MIT License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published