Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "exercism-raku",
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"ghcr.io/guiyomh/features/just:0": {
"version": "latest"
},
"ghcr.io/devcontainers-extra/features/raku-asdf:1": {
"version": "latest"
}
},
"postCreateCommand": "just setup"
}
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ Help us keep Exercism welcoming. Please read and abide by the

Use the command `just setup` provided by the `justfile`.


## Adding and Updating Exercises


Use the commands `just create-practice-exercise` and `just generate-practice-exercise` provided by the `justfile`.

## Running The Tests
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
setup:
bin/fetch-configlet
zef install --deps-only .
zef install --/test --deps-only .

create-practice-exercise slug author diff='1':
bin/configlet create --practice-exercise {{slug}} --author {{author}} --difficulty {{diff}}
Expand Down