Skip to content

Commit

Permalink
Merge pull request #19 from pfnet-research/misc-changes
Browse files Browse the repository at this point in the history
Misc changes
  • Loading branch information
dtaniwaki authored Apr 11, 2019
2 parents 59ff699 + 278060d commit 95667ff
Show file tree
Hide file tree
Showing 4 changed files with 133 additions and 9 deletions.
139 changes: 131 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### https://raw.github.com/github/gitignore/f908e51bcf38ae5ede449c55189a7b25d8c507cc/Go.gitignore

# Binaries for programs and plugins
*.exe
*.exe~
Expand All @@ -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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file not shown.

0 comments on commit 95667ff

Please sign in to comment.