Skip to content

Commit

Permalink
Add step to fork repository before cloning
Browse files Browse the repository at this point in the history
  • Loading branch information
derekvmcintire committed Dec 18, 2024
1 parent a01cefb commit d50ac22
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions heat-stack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,30 @@ For more details, visit the

### Repository Setup

1. Clone the repository:
1. **Fork the repository**
Go to the
[home-energy-analysis-tool repository](https://github.com/codeforboston/home-energy-analysis-tool)
and click the "Fork" button at the top right to create your own copy of the
repository.

2. **Clone your forked repository**
After forking, clone your fork to your local machine using the following
command (replace `your-username` with your GitHub username):

```bash
git clone git@github.com:codeforboston/home-energy-analysis-tool.git
git clone git@github.com:your-username/home-energy-analysis-tool.git
```

2. Navigate to the project directory:
3. **Navigate to the project directory**
Change into the `heat-stack` directory within the project:

```bash
cd home-energy-analysis-tool/heat-stack
```

3. Copy the example environment file into a new `.env` file:
4. **Copy the example environment file**
Copy the example environment file into a new `.env` file:

```bash
cp .env.example .env
```
Expand Down

0 comments on commit d50ac22

Please sign in to comment.