Skip to content

Commit 4060492

Browse files
authored
Merge pull request #8 from Evolutionary-Algorithms-On-Click/update-docs
Update documentation for DevOps changes
2 parents 964a092 + ee15e1c commit 4060492

File tree

3 files changed

+15
-67
lines changed

3 files changed

+15
-67
lines changed

.vitepress/config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ export default defineConfig({
132132
collapsed: false,
133133
items: [
134134
{ text: "Pre-requisites", link: "/install/env-setup" },
135-
{ text: "Backend Setup", link: "/install/backend-setup" },
136-
{ text: "Frontend Setup", link: "/install/frontend-setup" },
135+
{ text: "Install", link: "/install/install" },
137136
],
138137
},
139138
{

install/frontend-setup.md

Lines changed: 0 additions & 64 deletions
This file was deleted.
Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Backend Setup
33
description: Deploy the EvOC backend services locally using Docker Compose. This guide provides step-by-step instructions for setting up the backend environment.
44
---
55

6-
# Deploying EvOC Backend Locally
6+
# Deploying EvOC Locally
77

88
This guide will help you deploy the backend services of the Evolutionary Algorithms On Click (EvOC) project locally using Docker Compose.
99

@@ -50,6 +50,15 @@ AUTH_GRPC_PORT = 5001
5050
5151
RUNNER_CONTROLLER_HTTP_PORT = 5002
5252
AUTH_GRPC_ADDRESS = host.docker.internal:5001
53+
54+
55+
NEXT_PUBLIC_BACKEND_BASE_URL=http://localhost:5002
56+
NEXT_PUBLIC_AUTH_BASE_URL=http://localhost:5000
57+
NEXT_PUBLIC_MINIO_BASE_URL=http://localhost:9000
58+
59+
# Set to true and add your API key to enable AI features.
60+
NEXT_PUBLIC_AI=false
61+
GOOGLE_GENERATIVE_AI_API_KEY=<YOUR_GEMINI_API_KEY>
5362
```
5463

5564
![env-content](https://i.imgur.com/1uGj3rU.png)
@@ -74,6 +83,10 @@ If the following statements are displayed after installation, you have successfu
7483

7584
![docker-complete](https://i.imgur.com/eQ3oz2Y.png)
7685

86+
## Accessing EvOC
87+
88+
Once the services are up and running, you can access the EvOC backend at [http://localhost:3000](http://localhost:3000).
89+
7790
## Clean Up
7891

7992
To clean up containers and images after using the framework, execute this command in the operations VS Code terminal:

0 commit comments

Comments
 (0)