Quick Start Guide
Welcome to Unoplat Code Confluence - Your Gateway to Code Understanding!
๐ Unoplat Code Confluence currently supports Python codebases and is in alpha stage. We're actively working on expanding language support and features. While in alpha stage, it's best suited for developers and tech enthusiasts who enjoy exploring new tools, don't mind a few rough edges, and are willing to provide feedback as we work towards establishing a complete end-to-end workflow!
Introductionโ
The current version supports parsing codebases and exporting a JSON representation of code graph. For more details, check out:
- ๐ Vision ยป
Prerequisitesโ
Before you begin, ensure you have the following tool installed:
Tool | Purpose |
---|---|
๐ณ Docker & Docker Compose ยป | For running services |
Setting Up Code Confluenceโ
Follow these steps to set up Code Confluence:
-
Create Project Directory and Download Configuration:
mkdir -p code-confluence && cd code-confluence
# Download Docker Compose file
curl -O https://raw.githubusercontent.com/unoplat/unoplat-code-confluence/refs/heads/main/prod-docker-compose.yml -
Launch Services:
docker compose -f prod-docker-compose.yml up -d
-
Verify Deployment:
docker compose -f prod-docker-compose.yml ps
Running the Applicationโ
1. Access the Web Interfaceโ
- Open your browser and go to http://localhost:3000
2. Enter Your GitHub Personal Access Token (PAT)โ
- When prompted, enter a GitHub PAT with read access to the repositories you want to ingest.
- This is required for Code Confluence to clone and analyze your repositories.
If you don't have a GitHub PAT:
- Click "Generate new token on github (classic)"
- Click "Generate token" and copy it in the dialog box.
3. Search for a Repositoryโ
- Press
s
orS
(Shift + s) to open the search dialog. - You can search through your personal, public, and open source repositories.
***
4. Ingest a Repositoryโ
- In the Actions column, click on Ingest Repo for the repository you want to analyze.
5. Configure Repository & Codebaseโ
- A Repository Dialog Configuration will open up with automatic codebase detection capabilities.
- Code Confluence will automatically detect Python projects and their main directories within the repository.
- You can choose to Detect Codebases Automatically (recommended) or configure manually if needed.
- The automatic detection will analyze the repository structure and suggest appropriate configurations for:
- Root Packages: Automatically identified main modules/packages
- Codebase Folders: Detected project directories
- Package Manager: Automatically detected (e.g., uv, pip, poetry)
- Programming Language: Currently supports Python
Example: Automatic Detection Resultsโ
When automatic detection completes, you'll see the detected codebases:
- Review the automatically detected configurations and make any necessary adjustments.
- Once satisfied with the detection results, click Submit Repo to start the ingestion process.
6. Enable Developer Modeโ
- Navigate to Settings > Developer Mode, and toggle the switch on to unlock infrastructure tooling.
- Once enabled, you will see two new tools:
Workflow Orchestratorโ
- Access and manage automated workflows
- View execution logs and debug orchestration issues
- Monitor real-time workflow performance
- Click the "Workflow Orchestrator" button to open the temporal workflow orchestrator dashboard.
Knowledge Graphโ
- Explore the knowledge graph, inspect entities and relationships, and debug data connections
- Click the "Knowledge Graph" button to open the Neo4j Browser directly
- When Neo4j Browser opens, you'll be prompted to log in with:
Username: neo4j
Password: password - Once logged in, try this query to explore your code graph:
MATCH (n)
RETURN n
LIMIT 25
The above query displays the first 25 nodes in your code graph, perfect for a quick overview!
Troubleshootingโ
Need assistance? We're here to help!
Support Optionsโ
-
GitHub Issues
- ๐ Visit GitHub Issues ยป to:
- Report bugs or request features
- Browse existing solutions
- Get developer support
- ๐ Visit GitHub Issues ยป to:
-
Community Support
- ๐ฌ Join our Discord Community ยป to:
- Connect with other users
- Get real-time assistance
- ๐ฌ Join our Discord Community ยป to:
Remember to check existing issues before creating a new one!
This documentation is powered by Docusaurus, making it easy to maintain and extend.