clean slate

This commit is contained in:
2026-06-02 20:17:59 -06:00
commit a1884ac984
4 changed files with 67 additions and 0 deletions
+27
View File
@@ -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
+21
View File
@@ -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
-
+14
View File
@@ -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/...
+5
View File
@@ -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.