Skip to content

Commit

Permalink
create run script
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jun 10, 2024
1 parent a28b19a commit 9717c7a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"tasks": [
{
"command": "sudo chmod u+x scripts/setup && scripts/setup && yarn dev",
"command": "sudo chmod u+x scripts/run && scripts/run",
"isBackground": true,
"label": "start-vite-server",
"options": {
Expand Down
8 changes: 8 additions & 0 deletions scripts/run
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
set -e

cd "${BASH_SOURCE%/*}"

source ./setup

yarn dev

0 comments on commit 9717c7a

Please sign in to comment.