Skip to content

Commit

Permalink
feat: add codebox
Browse files Browse the repository at this point in the history
  • Loading branch information
eruizgar91 committed Jul 2, 2024
1 parent da6e511 commit 81db2b9
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions sdk/002-nvmApp/.codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "yarn install"
}
],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"start": {
"name": "start",
"command": "yarn start"
},
"artifacts:arbitrum-sepolia": {
"name": "artifacts:arbitrum-sepolia",
"command": "yarn artifacts:arbitrum-sepolia"
},
"dev": {
"name": "dev",
"command": "yarn dev",
"runAtStart": true,
"preview": {
"port": 3000
}
},
"build": {
"name": "build",
"command": "yarn build"
},
"clean": {
"name": "clean",
"command": "yarn clean"
},
"lint": {
"name": "lint",
"command": "yarn lint"
},
"lint:fix": {
"name": "lint:fix",
"command": "yarn lint:fix"
}
}
}

0 comments on commit 81db2b9

Please sign in to comment.