-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
301fecb
commit 0c9ccae
Showing
6 changed files
with
89 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
W9_DIST=community | ||
W9_REPO=dogtititi/autogpt-next-web | ||
W9_VERSION=latest | ||
W9_POWER_PASSWORD=1PrMxExC45LsCT | ||
|
||
#### -- Not allowed to edit below environments when recreate app based on existing data -- #### | ||
W9_ID=autogptnextweb | ||
W9_HTTP_PORT=3000 | ||
W9_HTTP_PORT_SET=9001 | ||
W9_URL=Internet_IP | ||
W9_NETWORK=websoft9 | ||
|
||
#### --------------------------------------------------------------------------------------- #### | ||
|
||
# Deployment Environment: | ||
NODE_ENV=development | ||
|
||
# Next Auth config: | ||
# Generate a secret with `openssl rand -base64 32`, or visit https://generate-secret.vercel.app/ | ||
NEXTAUTH_SECRET=*** | ||
NEXTAUTH_URL=http://localhost:3000 | ||
|
||
# Prisma | ||
DATABASE_URL=file:./db.sqlite | ||
|
||
# External APIs: | ||
OPENAI_API_KEY=*** | ||
|
||
# Guest Mode: | ||
The key NEXT_PUBLIC_GUEST_KEY should be in this format: abc,qwe,123, where each comma-separated value can be used | ||
NEXT_PUBLIC_GUEST_KEY=*** | ||
|
||
# Websearch. Fill both of these values to enable it locally | ||
NEXT_PUBLIC_WEB_SEARCH_ENABLED=false # Disables the ability to toggle web search | ||
SERP_API_KEY=*** # https://serper.dev/ for an API key | ||
|
||
# Auth providers. Required to enable sign in, in production. Development mode uses local auth. | ||
GOOGLE_CLIENT_ID=*** | ||
GOOGLE_CLIENT_SECRET=*** | ||
GITHUB_CLIENT_ID=*** | ||
GITHUB_CLIENT_SECRET=*** | ||
DISCORD_CLIENT_SECRET=*** | ||
DISCORD_CLIENT_ID=*** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# CHANGELOG | ||
|
||
## Release | ||
### Fixes and Enhancements | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# autogptnextweb | ||
|
||
安装后自行到web界面中填写秘钥或密码 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# compose: https://github.com/ConnectAI-E/AutoGPT-Next-Web/blob/main/docker-compose.prod.yml | ||
|
||
version: '3.8' | ||
|
||
services: | ||
autogpt-next-web: | ||
image: $W9_REPO:${W9_VERSION} | ||
container_name: ${W9_ID} | ||
restart: unless-stopped | ||
env_file: .env | ||
ports: | ||
- $W9_HTTP_PORT_SET:3000 | ||
|
||
networks: | ||
default: | ||
name: ${W9_NETWORK} | ||
external: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "autogptnextweb", | ||
"trademark": "AutoGPT-Next-Web", | ||
"release": true, | ||
"fork_url": "https://github.com/ConnectAI-E/AutoGPT-Next-Web", | ||
"edition": [ | ||
{ | ||
"dist": "community", | ||
"version": [ | ||
"latest" | ||
] | ||
} | ||
], | ||
"requirements": { | ||
"cpu": "1", | ||
"memory": "1", | ||
"disk": "1", | ||
"url": "https://github.com/ConnectAI-E/AutoGPT-Next-Web" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters