-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstarter-repository-definitions.yml
257 lines (248 loc) · 9.02 KB
/
starter-repository-definitions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
- language: python
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/python/app/main.py
target: app/main.py
- source: starter_templates/python/Pipfile
target: Pipfile
- source: starter_templates/python/Pipfile.lock
target: Pipfile.lock
- source: starter_templates/.gitignore
target: .gitignore
- source: starter_templates/python/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "python (3.8+)"
user_editable_file: "app/main.py"
- language: go
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/go/app/main.go
target: app/main.go
- source: starter_templates/go/go.mod
target: go.mod
- source: starter_templates/go/go.sum
target: go.sum
- source: starter_templates/.gitignore
target: .gitignore
- source: starter_templates/go/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "go (1.16+)"
user_editable_file: "app/main.go"
- language: javascript
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/javascript/app/main.js
target: app/main.js
- source: starter_templates/javascript/package.json
target: package.json
- source: starter_templates/.gitignore
target: .gitignore
- source: starter_templates/javascript/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "node (16)"
user_editable_file: "app/main.js"
- language: rust
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/rust/.gitignore
target: .gitignore
- source: starter_templates/rust/src/main.rs
target: src/main.rs
- source: starter_templates/rust/Cargo.toml
target: Cargo.toml
- source: starter_templates/rust/Cargo.lock
target: Cargo.lock
- source: starter_templates/rust/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "cargo (1.54)"
user_editable_file: "src/main.rs"
- language: csharp
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/csharp/.gitignore
target: .gitignore
- source: starter_templates/csharp/src/Program.cs
target: src/Program.cs
- source: starter_templates/csharp/codecrafters-sqlite.csproj
target: codecrafters-sqlite.csproj
- source: starter_templates/csharp/codecrafters-sqlite.sln
target: codecrafters-sqlite.sln
- source: starter_templates/csharp/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "dotnet (8.0)"
user_editable_file: "src/Program.cs"
- language: ruby
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/.gitignore
target: .gitignore
- source: starter_templates/ruby/app/main.rb
target: app/main.rb
- source: starter_templates/ruby/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
- source: starter_templates/ruby/Gemfile
target: Gemfile
- source: starter_templates/ruby/Gemfile.lock
target: Gemfile.lock
template_attributes:
required_executable: "ruby (3.3)"
user_editable_file: "app/main.rb"
- language: swift
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/swift/.gitignore
target: .gitignore
- source: starter_templates/swift/Sources/swift-sqlite-challenge/Main.swift
target: Sources/swift-sqlite-challenge/Main.swift
- source: starter_templates/swift/Package.swift
target: Package.swift
- source: starter_templates/swift/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "swift (5.7)"
user_editable_file: "Sources/swift-sqlite-challenge/Main.swift"
- language: cpp
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/cpp/.gitignore
target: .gitignore
- source: starter_templates/cpp/src/Server.cpp
target: src/Server.cpp
- source: starter_templates/cpp/CMakeLists.txt
target: CMakeLists.txt
- source: starter_templates/cpp/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "cmake"
user_editable_file: "src/Server.cpp"
- language: zig
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/zig/.gitignore
target: .gitignore
- source: starter_templates/zig/src/main.zig
target: app/main.zig
- source: starter_templates/zig/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "zig (0.11)"
user_editable_file: "app/main.zig"
- language: java
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/sample.db
target: sample.db
should_skip_template_evaluation: true
- source: starter_templates/download_sample_databases.sh
target: download_sample_databases.sh
- source: starter_templates/java/your_sqlite3.sh
target: your_sqlite3.sh
- source: starter_templates/java/.gitignore
target: .gitignore
- source: starter_templates/java/src/main/java/Main.java
target: src/main/java/Main.java
- source: starter_templates/java/pom.xml
target: pom.xml
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "java (21)"
user_editable_file: "src/main/java/Main.java"