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 readme with newline #10

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This is a sample repository to demonstrate how you can use preview environments

## Getting Started


- Fork this repository
- Synchronize the `render.yaml` file in [your dashboard](https://dashboard.render.com/iacs) and wait for your services to start.
- Note: The initial startup time takes a couple minutes. Subsequent builds are significantly faster.
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function App() {
<form id="email-form" name="email-form" data-name="Email Form" className="form">
<div className="task-title-group"><img src={require("./images/logo-icon.svg")} loading="lazy" alt="" className="task-logo"/>
<div className="task-overline">Powered by <a href="https://render.com">Render</a></div>
<h1 className="task-title">Todo List</h1>
<h1 className="task-title">My Todo List</h1>
</div>
<div className="task-container">
<div className="task-wrapper">
Expand All @@ -85,4 +85,4 @@ function App() {
)
}

export default App;
export default App;
6 changes: 6 additions & 0 deletions render.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ services:
buildCommand: cd backend && yarn
startCommand: cd backend && yarn start
envVars:
- key: MY_API_KEY3
value: production-api-key3
previewValue: test-api-key3
- key: MY_API_KEY2
value: production-api-key2
previewValue: test-api-key2
- key: MY_API_KEY
value: production-api-key
previewValue: test-api-key
Expand Down