Sandbox Development Environment

Build and test applications securely in ελβένγ's isolated sandbox environments with this step-by-step tutorial.

🚀 Setup Your Sandbox

Before you start, make sure you have:

  • ελβένγ CLI installed
  • A valid API key from the dashboard
  • Basic knowledge of command line tools
elbenz sandbox create --name demo-sandbox

This command creates a new sandbox environment with default configurations. You can customize it later.

Core Tutorials

1

Start the Sandbox

Launch your sandbox environment using the CLI:

elbenz sandbox start

This command deploys your sandboxed environment. The sandbox will run in an isolated container with limited resources for security.

2

Access the Console

Use the console to execute commands within the sandbox:

elbenz sandbox console
< Welcome to the sandbox shell >
$ ls
app/
$ cd app/
$ node server.js
Server listening on port 8080
                    

Interact with your sandbox environment just like a real server.

3

Stop and Cleanup

Gracefully stop and remove the sandbox when done:

elbenz sandbox destroy

This stops and deletes all containers and temporary files associated with your sandbox.

🔐 Security in Our Sandboxes

Memory Isolation

Each sandbox runs in a container with strict memory limits to prevent overuse and ensure safety.

Network Firewalls

Network access is limited to specific ports and IP ranges determined by your sandbox policy.

Ready to Secure Your Development?

Master the ελβένγ sandbox for isolated, safe, and efficient application testing before deployment.

Next: Deployment Tutorials
```