-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstarter-repository-definitions.yml
63 lines (61 loc) · 2.07 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
- language: python
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- 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/python/.gitignore
target: .gitignore
- source: starter_templates/python/your_grep.sh
target: your_grep.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "python (3.11)"
user_editable_file: "app/main.py"
- language: rust
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/rust/src/main.rs
target: src/main.rs
- source: starter_templates/rust/.gitignore
target: .gitignore
- source: starter_templates/rust/Cargo.toml
target: Cargo.toml
- source: starter_templates/rust/Cargo.lock
target: Cargo.lock
- source: starter_templates/rust/your_grep.sh
target: your_grep.sh
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "cargo (1.70)"
user_editable_file: "src/main.rs"
- language: go
file_mappings:
- source: starter_templates/README.md
target: README.md
- source: starter_templates/codecrafters.yml
target: codecrafters.yml
- source: starter_templates/go/your_grep.sh
target: your_grep.sh
- source: starter_templates/go/go.mod
target: go.mod
- source: starter_templates/go/go.sum
target: go.sum
- source: starter_templates/go/cmd/mygrep/main.go
target: cmd/mygrep/main.go
- source: starter_templates/.gitattributes
target: .gitattributes
template_attributes:
required_executable: "go (1.19)"
user_editable_file: "cmd/mygrep/main.go"