From a1884ac9846c484f95996e7805632e3700230531 Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Tue, 2 Jun 2026 20:17:59 -0600 Subject: [PATCH] clean slate --- .gitignore | 27 +++++++++++++++++++++++++++ CHANGELOG.md | 21 +++++++++++++++++++++ Makefile | 14 ++++++++++++++ README.md | 5 +++++ 4 files changed, 67 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 Makefile create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..167e4bd --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +### Project Specific +# Files +.env +*.log + +# Directories +/node_modules + +### Editor Specific +# Files +/*.sublime-project +/*.sublime-workspace + +# Directories +/.fleet +/.idea +/.nova +/.vscode +/.zed + +### System Specific +# Files +.DS_Store +Thumbs.db + +# Directories +__MACOSX diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d3b5500 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +### Added + +- + +### Changed + +- + +### Removed + +- + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cb98fa7 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.DEFAULT_GOAL := build + +.PHONY:fmt vet build +fmt: + go fmt ./... + +vet: fmt + go vet ./... + +build: + go build ./... + +test: + go test ./tests/... \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..1cab871 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Go Movie Streamer + +This is a follow-along project to learn Golang. I'm using [this video tutorial](https://www.youtube.com/watch?v=jBf7of9JTV8) (if it is sitll up). + +I solemly swear I will not use AI of any kind for this. I will follow directions and use documentation. All code written will be done by hand.