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
- Frontend: Next.js application with modern UI/UX
- Backend: FastAPI service with Python
- Database: Neo4j graph database
# Start Neo4j using docker-compose
docker-compose up neo4j
Access Neo4j Browser at http://localhost:7474
- Username: neo4j
- Password: mypassword123
# 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
# 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
- Python 3.9+
- Node.js 18+
- Docker (for Neo4j)
- OpenAI API key
For testing purposes, the following user accounts are pre-configured:
Gmail Organization:
Interface Organization:
No Password required.
.
βββ Frontend/ # Next.js application
βββ Backend/ # FastAPI application
βββ docker-compose.yml # Docker composition (for Neo4j)
βββ README.md # This file
OPENAI_API_KEY=your_key_here
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=mypassword123
- 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