Skip to content

Commit

Permalink
docs: add playRoutes command
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Oct 25, 2023
1 parent 0c620b7 commit 3a67ae4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ To watch for Typescript/SCSS changes and automatically recompile:
docker compose run --rm ui bash -c "/lila/ui/build -w"
```

## Updating Routes

If you edit the `conf/routes` file, you'll need to update the route cache.
```bash
docker compose exec lila bash -c "./lila playRoutes"
```
### To add translation keys:
After modifying a `translation/source/*.xml` file, run:
Expand Down
2 changes: 1 addition & 1 deletion command/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fn main() -> std::io::Result<()> {

fn prompt_for_optional_services() -> Result<Vec<OptionalService>, Error> {
multiselect(
"Select which optional services to run:\n (Use arrows, <space> to toggle, <enter> to continue)\n",
"Select which optional services to include:\n (Use arrows, <space> to toggle, <enter> to continue)\n",
)
.required(false)
.item(
Expand Down

0 comments on commit 3a67ae4

Please sign in to comment.