Skip to content

Commit 458cfad

Browse files
committed
update site, update demo.md
1 parent 6dc44d5 commit 458cfad

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Demo.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Knowing this, let's start developing.
1616
## Running in my dev environment
1717
### Containers, TestContainers, TCC 🐳
1818
- Navigate back to project on VS Code
19-
- Start model container as instructed in README
19+
- Start model container as instructed in README: `docker run -p 11434:11434 --name model samanthamorris684/ollama@sha256:78a199fa9652a16429037726943a82bd4916975fecf2b105d06e140ae70a1420`
2020
- Run app locally using: `dotenv -e .env.dev -- npm run start:dev`
2121
- Split view between VSCode and Chrome
2222
- Navigate to localhost:3000 on Chrome
@@ -34,7 +34,7 @@ Knowing this, let's start developing.
3434
### Topics: Build, Build Cloud, and Scout 🐳
3535
- Let's try to build this locally: `docker build -t samanthamorris684/catbot:nobc . --platform="linux/amd64"`
3636
- *Note: This will only leverage local caching!*
37-
- We can also use build cloud remote bulder: `docker buildx build --builder cloud-demonstrationorg-default -t samanthamorris684/catbot:bc . --platform ="linux/amd64"`
37+
- We can also use build cloud remote bulder: `docker buildx build --builder cloud-demonstrationorg-default -t samanthamorris684/catbot:bc . --platform="linux/amd64"`
3838
- Subsequent builds of this image will use the shared build cache on different machines, making builds faster! [Take a look.](https://app.docker.com/build/accounts/demonstrationorg/builds)
3939
- *Note: We will also make use of build cloud in the CI pipeline.*
4040
- Navigate to Docker Desktop and search for image build
@@ -57,10 +57,12 @@ Knowing this, let's start developing.
5757
- Let's make a quick PR.
5858
- Edit line 213 of App.js to a different cat name
5959
- Quick preview of a frontend change by running `dotenv -e .env.dev -- npm run start:dev`
60-
- `git branch -b new-cat`
60+
- `git checkout -b new-cat`
6161
- `git add src/App.js` && `git commit -m "Change cat name"`
6262
- `git push`
6363

64+
(Cleanup: `git branch -D new-cat`, delete branch in GH and close PR)
65+
6466
- Navigate to GitHub and open a PR then see the pipeline for building, testing, and scanning
6567

6668
- *Note: On merge, we kick off the deployment to prod, but we won't show that here!*

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
<link rel="icon" href="%PUBLIC_URL%/pebble.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<meta
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>React App</title>
27+
<title>CatBot</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

public/pebble.ico

240 KB
Binary file not shown.

0 commit comments

Comments
 (0)