-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -571,19 +571,20 @@ Percentage of the requests served within a certain time (ms) | |
1. Clone the repository | ||
|
||
```bash | ||
git clone [email protected]:KostLinux/example-go-web-app.git | ||
git clone [email protected]:KostLinux/example-go-web-app.git my-web-application | ||
``` | ||
|
||
2. Change the directory | ||
|
||
```bash | ||
cd example-go-web-app | ||
cd my-web-application | ||
``` | ||
|
||
3. Configure .env (optional) | ||
3. Configure .env | ||
|
||
```bash | ||
cp .env.example .env && nano .env | ||
cp .env.example .env | ||
nano .env | ||
``` | ||
|
||
4. Run the application | ||
|
@@ -594,7 +595,7 @@ make run || go run main.go | |
|
||
5. Visit the application in your browser | ||
|
||
Feel free to visit the application at localhost:8000 and move around available paths | ||
Feel free to visit the application at `localhost:8000` and move around available paths | ||
|
||
## Running the application with Live Reload (Air) | ||
|
||
|