Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/langgenius/dify-sandbox
A lightweight, fast, and secure code execution environment that supports multiple programming languages
https://github.com/langgenius/dify-sandbox
Last synced: 3 months ago
JSON representation
A lightweight, fast, and secure code execution environment that supports multiple programming languages
- Host: GitHub
- URL: https://github.com/langgenius/dify-sandbox
- Owner: langgenius
- License: apache-2.0
- Created: 2024-01-31T15:35:18.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-07-23T05:44:05.000Z (3 months ago)
- Last Synced: 2024-07-23T09:37:58.946Z (3 months ago)
- Language: Go
- Homepage: https://docs.dify.ai/development/backend/sandbox
- Size: 3.46 MB
- Stars: 196
- Watchers: 3
- Forks: 33
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dify-Sandbox
## Introduction
Dify-Sandbox offers a simple way to run untrusted code in a secure environment. It is designed to be used in a multi-tenant environment, where multiple users can submit code to be executed. The code is executed in a sandboxed environment, which restricts the resources and system calls that the code can access.## Use
### Requirements
DifySandbox currently only supports Linux, as it's designed for docker containers. It requires the following dependencies:
- libseccomp
- pkg-config
- gcc
- golang 1.20.6### Steps
1. Clone the repository using `git clone https://github.com/langgenius/dify-sandbox` and navigate to the project directory.
2. Run ./install.sh to install the necessary dependencies.
3. Run ./build/build_[amd64|arm64].sh to build the sandbox binary.
4. Run ./main to start the server.If you want to debug the server, firstly use build script to build the sandbox library binaries, then debug as you want with your IDE.
## FAQ
Refer to the [FAQ document](FAQ.md)