restructure (#345)

* restructure

* udpate readme links
This commit is contained in:
Glitch
2023-12-13 15:36:25 -03:00
committed by GitHub
parent 599743deb1
commit deb123f283
573 changed files with 578 additions and 578 deletions
+1
View File
@@ -0,0 +1 @@
FROM node:21-bullseye
+31
View File
@@ -0,0 +1,31 @@
{
// 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": {
"dev": {
"name": "dev",
"command": "yarn dev",
"runAtStart": true,
"preview": {
"port": 5173
}
},
"build": {
"name": "build",
"command": "yarn build",
"runAtStart": false
},
"preview": {
"name": "preview",
"command": "yarn preview",
"runAtStart": false
}
}
}