Initial commit

This commit is contained in:
Ethan Paul 2022-04-05 00:17:41 -04:00
commit e70c1abbf0
No known key found for this signature in database
GPG Key ID: 6A337337DF6B5B1A
5 changed files with 56 additions and 0 deletions

17
.gitignore vendored Normal file
View File

@ -0,0 +1,17 @@
### TeX ###
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
## Intermediate documents:
*.dvi
*-converted-to.*
## Output
*.pdf
publish/

16
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,16 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: end-of-file-fixer
types:
- text
- id: trailing-whitespace
types:
- text
- id: check-merge-conflict
types:
- text

5
LICENSE.md Normal file
View File

@ -0,0 +1,5 @@
# Creative Commons Attribution 4.0 International License
This work is licensed under the Creative Commons Attribution 4.0 International License.
To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/
or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
# net proposal makefile
.PHONY: help
# Put it first so that "make" without argument is like "make help"
# Adapted from:
# https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help: ## List Makefile targets
$(info Makefile documentation)
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-10s\033[0m %s\n", $$1, $$2}'
clean: ## Clean up temp resources
rm --recursive --force publish/

6
README.md Normal file
View File

@ -0,0 +1,6 @@
# New England Transit Proposal
[![CC BY](https://i.creativecommons.org/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/)
This work is licensed under a
[Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).