When provisioning a sandbox you'll need:
- A Forge API token
- An ID of a Forge server to deploy to
It is imperative to leverage GitHub secrets to ensure you are not commit this type of sensitive data to your codebase and potentially exposing this data to the outside world.
Below is an example of a GitHub action that will create a new sandbox when it is labeled with a "sandbox" tag in the pull request. When the pull request is closed it will run the decommission action.
name: Sandbox
on:
pull_request:
types: [labeled, reopened, closed]
jobs:
sandbox:
if: contains(github.event.pull_request.labels.*.name, 'sandbox')
runs-on: ubuntu-latest
env:
FORGE_APP_ID: app
FORGE_DOMAIN: example.com
FORGE_DEPLOY_SCRIPT: "npm install; npm run build"
FORGE_TOKEN: ${{ secrets.BLACKSMITH_FORGE_TOKEN }}
FORGE_ORGANIZATION: ${{ secrets.BLACKSMITH_FORGE_ORGANIZATION }}
FORGE_SERVER: ${{ secrets.BLACKSMITH_SANDBOX_SERVER }}
FORGE_REPO: ${{ github.repository }}
FORGE_BRANCH: ${{ github.head_ref }}
FORGE_PR_NUMBER: ${{ github.event.number }}
FORGE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: none
- name: Install Blacksmith
run: composer global require trendyminds/blacksmith-cli
- name: Create Sandbox (If PR was just opened or reopened)
if: github.event.action != 'closed'
run: blacksmith create
- name: Destroy Sandbox (When PR is closed)
if: github.event.action == 'closed'
run: blacksmith destroy| Environment Name | Default value | Description |
|---|---|---|
FORGE_TOKEN |
The API token to use to authenticate to your Forge account | |
FORGE_ORGANIZATION |
Your Forge organization slug. Found in the dashboard URL: forge.laravel.com/orgs/{slug}/... |
|
FORGE_SERVER |
The ID of the server to use when provisioning new sites | |
FORGE_APP_ID |
The prefix for your domain and database | |
FORGE_PR_NUMBER |
The PR number for your sandbox pull request | |
FORGE_PHP_VERSION |
php83 |
The version of PHP to use |
FORGE_DOMAIN |
The domain to use (Ex: domain.com) |
|
FORGE_INSTALL_SSL |
true |
When enabled, a Let's Encrypt SSL will be provisioned for the domain |
FORGE_DEPLOY_SCRIPT |
Additional steps to add to your deploy process. Use ; to delineate between steps (Ex: npm install; npm run build) |
|
FORGE_ENV_VARS |
Environment variables to append (or replace if they already exist) | |
FORGE_COMPOSER_INSTALL_ON_MOUNT |
true |
If composer install should be ran when the repo is mounted. |
FORGE_ENABLE_DB |
false |
Whether your site needs a database. If true one will be created for you and shared in the post-deploy comment |
FORGE_DB_PASSWORD |
The master password for your forge database user. This will be placed into your project's .env automatically |
|
FORGE_ALLOWED_IPS |
If you would like to restrict your sandbox to specific IP addresses you may list them here (Ex: 1.1.1.1; 2.2.2.2) |
|
FORGE_GITHUB_TOKEN |
Used to create a post-deploy comment within the pull request | |
FORGE_REPO |
The GitHub repo to deploy and mount for the sandbox generation (Ex: myorg/repo) |
|
FORGE_BRANCH |
The branch to use when mounting your repo to the site | |
FORGE_POST_MOUNT_COMMANDS |
Commands to run after the repository is first mounted. Use ; to delineate between steps (Ex: ls -lah; echo 'hi') |
|
FORGE_PATH_TO_COMPOSER_FILE |
The path to your composer.json file if not in the root of the project (Ex: src/) |
If your project includes an .nvmrc file, Blacksmith installs the pinned Node version on every deploy using a per-site nvm. Because sandboxes run under user isolation, each site's user gets its own ~/.nvm, so the pinned version is scoped to that sandbox. Without an .nvmrc, the server's default Node is used and nvm is not installed.
This ensures FORGE_DEPLOY_SCRIPT steps such as npm install; npm run build run against the Node version your project expects.
Database backups were removed in 3.2.0. Earlier versions took a one-off Forge backup of the sandbox database before destroying it, configured via FORGE_STORAGE_PROVIDER_ID. That variable is no longer read, and blacksmith destroy now deletes the database outright.
If you need a sandbox database to survive its teardown, back it up yourself before running blacksmith destroy, or set up a scheduled backup on the server in Forge.
Git automation should be enabled by including STATAMIC_GIT_AUTOMATIC in your environment variables and setting it to false.
This means content commits have to be manually performed by visiting Utilties > Git. However, it greatly simplifies your sandbox:
- You do not need to run Redis in every Statamic sandbox you create handling queued commits
- You do not need to commit every single content save to your pull request if you do not queue your commits
While STATAMIC_GIT_AUTOMATIC=false means some occasional manual labor, it makes the setup simpler and also enables you to create Statamic sandboxes that shouldn't have committed sandbox changes.
