Skip to content

Commit

Permalink
docs(examples): add codesandbox configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Sep 20, 2023
1 parent ccbb4c0 commit b4dc83e
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
@@ -0,0 +1 @@
FROM node:20-bullseye
@@ -0,0 +1,18 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "npm install"
}
],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"npm start": {
"name": "npm start",
"command": "npm start",
"runAtStart": true
}
}
}
@@ -0,0 +1 @@
FROM node:20-bullseye
@@ -0,0 +1,18 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "npm install"
}
],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"npm start": {
"name": "npm start",
"command": "npm start",
"runAtStart": true
}
}
}

0 comments on commit b4dc83e

Please sign in to comment.