https://github.com/bootdotdev/learn-cicd-starter
The starter code for the "Learn CICD" course on Boot.dev
https://github.com/bootdotdev/learn-cicd-starter
Last synced: about 2 months ago
JSON representation
The starter code for the "Learn CICD" course on Boot.dev
- Host: GitHub
- URL: https://github.com/bootdotdev/learn-cicd-starter
- Owner: bootdotdev
- Created: 2023-05-30T21:28:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-14T18:02:57.000Z (4 months ago)
- Last Synced: 2025-05-08T00:56:24.670Z (about 2 months ago)
- Language: Go
- Size: 519 KB
- Stars: 35
- Watchers: 2
- Forks: 2,884
- Open Issues: 254
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# learn-cicd-starter (Notely)
This repo contains the starter code for the "Notely" application for the "Learn CICD" course on [Boot.dev](https://boot.dev).
## Local Development
Make sure you're on Go version 1.22+.
Create a `.env` file in the root of the project with the following contents:
```bash
PORT="8080"
```Run the server:
```bash
go build -o notely && ./notely
```*This starts the server in non-database mode.* It will serve a simple webpage at `http://localhost:8080`.
You do *not* need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course!