clean slate
This commit is contained in:
+27
@@ -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
|
||||||
@@ -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
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
@@ -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/...
|
||||||
@@ -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.
|
||||||
Reference in New Issue
Block a user