-
Notifications
You must be signed in to change notification settings - Fork 72
updated docs and added setup video guide #152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,7 @@ | ||||||
| # Devr.AI Installation Guide | ||||||
|
|
||||||
| Follow this guide to set up Devr.AI's development environment on your local machine. | ||||||
| For Setup guide video tutorial go to [Devr Setup Guide](https://drive.google.com/file/d/1vlwGE5oJrbXb1gkZJv2NT2rHyt-z-RDv/view?usp=sharing) | ||||||
|
|
||||||
| ## Prerequisites | ||||||
|
|
||||||
|
|
@@ -54,19 +55,26 @@ cp env.example .env | |||||
| nano .env # or use your preferred editor | ||||||
| ``` | ||||||
|
|
||||||
| 6. **Start Weaviate database** | ||||||
| 6. **Set up Docker container** | ||||||
| ```sh | ||||||
| cd backend | ||||||
| docker-compose up -d weaviate | ||||||
| docker-compose up -d # Start weaviate, falkordb, rabbitmq | ||||||
| ``` | ||||||
|
|
||||||
| 7. **Start Docker containers** | ||||||
| ```sh | ||||||
| Go to docker dekstop and start the containers | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typo: "dekstop" β "desktop". -Go to docker dekstop and start the containers
+Go to Docker Desktop and start the containersπ Committable suggestion
Suggested change
π€ Prompt for AI Agents |
||||||
| ``` | ||||||
|
|
||||||
| 7. **Start the backend server** | ||||||
| 8. **Start the backend server** | ||||||
| ```sh | ||||||
| cd backend | ||||||
| poetry run python main.py | ||||||
| poetry run python main.py # Terminal 1 | ||||||
| poetry run python start_github_mcp_server.py # Terminal 2 (Start MCP server) | ||||||
| flask --app api/index.py run --debug --port 5000 # Terminal 3 (Start graphDB) | ||||||
| ``` | ||||||
|
|
||||||
| 8. **Start the frontend** (in a new terminal) | ||||||
| 9. **Start the frontend** (in a new terminal) | ||||||
| ```sh | ||||||
| cd frontend | ||||||
| npm install | ||||||
|
|
||||||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use forward slashes in asset paths for cross-platform compatibility.
The logo path uses a Windows-only backslash separator. Replace with forward slashes so the path works on Linux, macOS, and Windows.
π Committable suggestion
π€ Prompt for AI Agents