Skip to content

Commit 9b96f8d

Browse files
committed
Init all starter-templates
1 parent 8909110 commit 9b96f8d

File tree

14 files changed

+129
-4
lines changed

14 files changed

+129
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules/
22
dist/
33
.DS_Store
4-
*.log
4+
**.log
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"description": "Template configuration for this project. See https://www.codebuff.com/config for all options.",
3+
"startupProcesses": [
4+
{
5+
"name": "dev",
6+
"command": "npm run dev",
7+
"enabled": true,
8+
"stdoutFile": "logs/dev.log",
9+
"stderrFile": "logs/dev.log"
10+
},
11+
{
12+
"name": "typecheck",
13+
"command": "npm run typecheck -- --watch",
14+
"enabled": true,
15+
"stdoutFile": "logs/typecheck.log",
16+
"stderrFile": "logs/typecheck.log"
17+
}
18+
]
19+
}

starter-templates/convex/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@ yarn-error.log*
3838
# typescript
3939
*.tsbuildinfo
4040
next-env.d.ts
41+
42+
# log files
43+
**.log
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"description": "Real-time chat application with Convex backend and Next.js frontend",
3+
"startupProcesses": [
4+
{
5+
"name": "dev",
6+
"command": "npm run dev",
7+
"enabled": true,
8+
"stdoutFile": "logs/dev.log",
9+
"stderrFile": "logs/dev.log"
10+
},
11+
{
12+
"name": "typecheck",
13+
"command": "npm run typecheck -- --watch",
14+
"enabled": true,
15+
"stdoutFile": "logs/typecheck.log",
16+
"stderrFile": "logs/typecheck.log"
17+
}
18+
]
19+
}

starter-templates/nextjs/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,6 @@ yarn-error.log*
3939
# typescript
4040
*.tsbuildinfo
4141
next-env.d.ts
42+
43+
# log files
44+
**.log
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"description": "Template configuration for this project. See https://www.codebuff.com/config for all options.",
3+
"startupProcesses": [
4+
{
5+
"name": "dev",
6+
"command": "npm run dev",
7+
"enabled": true,
8+
"stdoutFile": "logs/dev.log",
9+
"stderrFile": "logs/dev.log"
10+
},
11+
{
12+
"name": "typecheck",
13+
"command": "npm run typecheck -- --watch",
14+
"enabled": true,
15+
"stdoutFile": "logs/typecheck.log",
16+
"stderrFile": "logs/typecheck.log"
17+
}
18+
]
19+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules/
22
dist/
33
.DS_Store
4-
*.log
4+
**.log
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"description": "Template configuration for this project. See https://www.codebuff.com/config for all options.",
3+
"startupProcesses": [
4+
{
5+
"name": "dev",
6+
"command": "npm run dev",
7+
"enabled": true,
8+
"stdoutFile": "logs/dev.log",
9+
"stderrFile": "logs/dev.log"
10+
},
11+
{
12+
"name": "typecheck",
13+
"command": "npm run typecheck -- --watch",
14+
"enabled": true,
15+
"stdoutFile": "logs/typecheck.log",
16+
"stderrFile": "logs/typecheck.log"
17+
}
18+
]
19+
}

starter-templates/python-cli/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ __pycache__/
55
.venv/
66
venv/
77
.DS_Store
8-
*.log
8+
**.log
99
dist/
1010
build/
1111
*.egg-info/
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"description": "Template configuration for this project. See https://www.codebuff.com/config for all options.",
3+
"startupProcesses": []
4+
}

0 commit comments

Comments
 (0)