chore: remove outdated setup_guide directory
The setup_guide directory contained only redirect files pointing to the new docs location and outdated example files that are already available in the root directory. - Removed setup_guide/README.md (redirect only) - Removed setup_guide/DOCKER_SETUP_ADVANCED.md (redirect only) - Removed setup_guide/docker-compose.yml (outdated) - Removed setup_guide/docker.env (outdated) - Updated .gitignore to remove setup_guide reference
This commit is contained in:
parent
7717e0f9f6
commit
304cc30f1b
5 changed files with 0 additions and 58 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,7 +6,6 @@ data/
|
|||
sqlite-db/
|
||||
surreal-data/
|
||||
docker.env
|
||||
!setup_guide/docker.env
|
||||
notebook_data/
|
||||
# Python-specific
|
||||
*.py[cod]
|
||||
|
|
|
|||
|
|
@ -1,16 +0,0 @@
|
|||
# Open Notebook - Advanced Docker Setup Guide
|
||||
|
||||
> **This documentation has moved!**
|
||||
>
|
||||
> This content is now available at [deployment/docker.md](../docs/deployment/docker.md)
|
||||
>
|
||||
> Please update your bookmarks and links to point to the new location.
|
||||
|
||||
---
|
||||
|
||||
**Quick Links:**
|
||||
- [Docker Setup Guide](../docs/deployment/docker.md) - Complete Docker setup instructions
|
||||
- [Single-Container Deployment](../docs/deployment/single-container.md) - Simplified single-container setup
|
||||
- [AI Models Configuration](../docs/5-CONFIGURATION/ai-providers.md) - Guide to all supported AI providers
|
||||
- [Deployment Overview](../docs/deployment/index.md) - All deployment options
|
||||
- [Getting Started](../docs/getting-started/index.md) - Installation and setup guide
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
# Open Notebook - Docker Setup Guide for Beginners
|
||||
|
||||
> **This documentation has moved!**
|
||||
>
|
||||
> This content is now available at [deployment/docker.md](../docs/deployment/docker.md)
|
||||
>
|
||||
> Please update your bookmarks and links to point to the new location.
|
||||
|
||||
---
|
||||
|
||||
**Quick Links:**
|
||||
- [Docker Setup Guide](../docs/deployment/docker.md) - Complete Docker setup instructions
|
||||
- [Single-Container Deployment](../docs/deployment/single-container.md) - Simplified single-container setup
|
||||
- [Deployment Overview](../docs/deployment/index.md) - All deployment options
|
||||
- [Getting Started](../docs/getting-started/index.md) - Installation and setup guide
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
services:
|
||||
open_notebook:
|
||||
image: lfnovo/open_notebook:v1-latest-single
|
||||
ports:
|
||||
- "8502:8502"
|
||||
- "5055:5055"
|
||||
env_file:
|
||||
- ./docker.env
|
||||
pull_policy: always
|
||||
volumes:
|
||||
- ./notebook_data:/app/data
|
||||
- ./surreal_single_data:/mydata
|
||||
restart: always
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
|
||||
|
||||
OPENAI_API_KEY=
|
||||
|
||||
|
||||
# CONNECTION DETAILS FOR YOUR SURREAL DB
|
||||
# use localhost if using the single container, or surrealdb if using the multi-container
|
||||
SURREAL_URL="ws://localhost/rpc:8000"
|
||||
SURREAL_USER="root"
|
||||
SURREAL_PASSWORD="root"
|
||||
SURREAL_NAMESPACE="open_notebook"
|
||||
SURREAL_DATABASE="open_notebook"
|
||||
|
||||
Loading…
Reference in a new issue