Skip to content

Commit 6dd4e69

Browse files
committed
Add Heroku CD
1 parent d722e01 commit 6dd4e69

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ This arrangement brings a security benefit: The clients running inside a browser
105105
* Seamless debugging. Debug a minified/obfuscated, compressed production bundle and put breakpoints in its TypeScript code using both VS Code and Chrome DevTools. Development build debugging: put breakpoints in the client and backend code and debug both simultaneously using a single instance of VS Code.
106106

107107
* Sample websites.
108-
* [Demo - Full stack](https://crisp-react.winwiz1.com). Manual build.
109-
* [Demo - Jamstack](https://crisp-react.pages.dev). Automated build.
108+
* [Demo - Full stack](https://crisp-react.winwiz1.com). Automated build performed by Heroku.
109+
* [Demo - Jamstack](https://crisp-react.pages.dev). Automated build performed by Cloudflare Pages.
110110
* [Production](https://virusquery.com). Based on Crisp React.
111111

112112
## Table of Contents

client/src/components/Overview.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ const Msg: React.FC = _props => {
4545
} else {
4646
return (
4747
<React.Fragment>
48-
'Full stack' build option.
48+
'Full stack' build option. It was deployed automatically
49+
by a CD pipeline created by <a target="_blank" rel="noopener noreferrer"
50+
href="https://heroku.com/">Heroku</a> in
51+
response to a push into the repository.
4952
</React.Fragment>
5053
);
5154
}

heroku.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build:
2+
docker:
3+
web: Dockerfile

0 commit comments

Comments
 (0)