Skip to content

Commit c3d1a3c

Browse files
author
Ayres, Andrew
committed
Change deploy-tool to deploy-prototype
1 parent 528954a commit c3d1a3c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

episodes/02-Copy-Template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ After the manual changes we made in the previous step, your tool XML will be cor
250250
To deploy your tool to the NDIP platform, you need to add the XML file to the galaxy-tools repository. The template includes a utility for this:
251251
252252
```bash
253-
poetry run deploy-tool
253+
poetry run deploy-prototype
254254
```
255255
256256
This script will:
@@ -282,11 +282,11 @@ Let's understand the key components that make your tool work in NDIP:
282282
283283
3. **Deployment Process**:
284284
- When you push code to your repository → CI builds a new container
285-
- When you run `deploy-tool` → The utility checks if your container exists and pushes your tool XML to the galaxy-tools prototype branch
285+
- When you run `deploy-prototype` → The utility checks if your container exists and pushes your tool XML to the galaxy-tools prototype branch
286286
- After XML is merged → Your tool appears in the NDIP interface
287287
288288
::::::::::::::::::::::::::::::::::::::::: callout
289-
In a production environment, when your tool is ready for users, you would create a merge request from the prototype branch to the dev branch. The NDIP team reviews these changes, merges them, and your tool will be deployed to the production instance during the next deployment.
289+
In a production environment, when your tool is ready for users, you would run the deploy-production tool. This will create a merge request to the dev branch. The NDIP team reviews these changes, merges them, and your tool will be deployed to the production instance during the next deployment.
290290
::::::::::::::::::::::::::::::::::::::::::::::::
291291
292292
## References

episodes/04-MVVM-Design-Pattern.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ Here are the steps to push your changes and deploy the tool:
360360
3. **Commit your changes:** Create a commit with a descriptive message: `git commit -m "Update Fractal tool with MVVM, bump to version 0.2.0"`.
361361
4. **Push to the repository:** Push your committed changes to the remote repository with `git push`.
362362
5. **Wait for CI/CD:** The push will trigger a CI/CD pipeline in gitlab. Wait for the pipeline to complete which includes building the container image for your tool. You can monitor the pipeline status in the Gitlab interface.
363-
6. **Deploy the tool:** Once the pipeline is successful, run the deployment command from your project's root directory: `poetry run deploy-tool`.
363+
6. **Deploy the tool:** Once the pipeline is successful, run the deployment command from your project's root directory: `poetry run deploy-prototype`.
364364

365365
This process ensures that your updated tool is built, containerized, and made available through NDIP.
366366

0 commit comments

Comments
 (0)