diff --git a/.gitignore b/.gitignore index 36a1824..80ce1d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +### https://raw.github.com/github/gitignore/f908e51bcf38ae5ede449c55189a7b25d8c507cc/Go.gitignore + # Binaries for programs and plugins *.exe *.exe~ @@ -11,19 +13,140 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out +# vendoring +vendor/** + +### https://raw.github.com/github/gitignore/f908e51bcf38ae5ede449c55189a7b25d8c507cc/Python.gitignore + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + + +### Project-specific config + # Log files *.log -# Coverage files +# Coverage file *.cov -# Go -vendor/** - # Misc .envrc -dist/ +-dist/ tmp/ -/config.yaml -AUTHORS -.vscode +-/config.yaml +-AUTHORS +-.vscode diff --git a/Dockerfile b/Dockerfile index a7b8e49..cc15ef6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get update -q && apt-get install -yq --no-install-recommends \ software-properties-common \ apt-transport-https \ ca-certificates \ + vim \ && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/Makefile b/Makefile index e82a64a..6ada981 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ build: deps go build -tags netgo -installsuffix netgo $(LDFLAGS) -o $(OUTDIR)/$(NAME) .PHONY: install -install: +install: deps go install -tags netgo -installsuffix netgo $(LDFLAGS) .PHONY: build-linux-amd64 diff --git a/scripts/license/__pycache__/license_header.cpython-36.pyc b/scripts/license/__pycache__/license_header.cpython-36.pyc deleted file mode 100644 index fdcd2de..0000000 Binary files a/scripts/license/__pycache__/license_header.cpython-36.pyc and /dev/null differ