Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update local dev tips #115

Merged
merged 3 commits into from
Mar 29, 2024
Merged
Changes from 1 commit
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
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ If you need to change parameters and re-run a workflow, first do:

### Tips for running the code locally for development

When working locally, double check that the Docker client is running and clean the Docker cache to make sure you are using the latest images.
#### Cylc local development
When working locally and using the Cylc local pipeline, double check that the Docker client is running and clean the Docker cache to make sure you are using the latest images.
- [ ] delete any existing images from the Docker Dashboard
- [ ] from a terminal, run:
```bash
Expand All @@ -211,8 +212,8 @@ docker rm $(docker ps -aq)
```bash
docker image prune
```

When running locally, make sure you have at least Julia 1.9.0 installed with the correct architecture for your local machine. (https://julialang.org/downloads/)
#### CLI local development
danielmwatkins marked this conversation as resolved.
Show resolved Hide resolved
When running the CLI locally, make sure you have at least Julia 1.9.0 installed with the correct architecture for your local machine. (https://julialang.org/downloads/)

- [ ] `cd <your-project-path>/ice-floe-tracker-pipeline`

Expand Down
Loading