new: planner v2

back to basics
This commit is contained in:
Matthew Ryan Dillon 2022-01-09 16:55:37 -07:00
parent a804998c4a
commit 76df992adb
150 changed files with 1736 additions and 12590 deletions

179
.gitignore vendored
View file

@ -1,34 +1,165 @@
# The directory Mix will write compiled artifacts to.
/_build/
# Created by https://www.toptal.com/developers/gitignore/api/python,vim
# Edit at https://www.toptal.com/developers/gitignore?templates=python,vim
# If you run "mix test --cover", coverage assets end up here.
/cover/
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# The directory Mix downloads your dependencies sources to.
/deps/
# C extensions
*.so
# Where 3rd-party dependencies like ExDoc output generated docs.
/doc/
# 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
# Ignore .fetch files in case you like to edit your project deps locally.
/.fetch
# 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
# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Also ignore archive artifacts (built via "mix archive.build").
*.ez
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Ignore package tarball (built via "mix hex.build").
planner-*.tar
# Translations
*.mo
*.pot
# If NPM crashes, it generates a log, let's ignore it too.
npm-debug.log
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# The directory NPM downloads your dependencies sources to.
/assets/node_modules/
# Flask stuff:
instance/
.webassets-cache
# Since we are building assets from assets/,
# we ignore priv/static. You may want to comment
# this depending on your deployment strategy.
/priv/static/
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# 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/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
### Vim ###
# Swap
[._]*.s[a-v][a-z]
!*.svg # comment out if you don't need vector files
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
# Session
Session.vim
Sessionx.vim
# Temporary
.netrwhist
*~
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~
# End of https://www.toptal.com/developers/gitignore/api/python,vim