├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .env* 2 | cache.json 3 | misc/ 4 | var/ 5 | out 6 | 7 | db.sqlite3 8 | 9 | #Emacs 10 | *~ 11 | 12 | # Sublime Text 13 | *.sublime-* 14 | 15 | # Vim 16 | *.sw* 17 | 18 | # VSCode 19 | *.vscode 20 | 21 | # AWS credentials 22 | .aws/ 23 | 24 | .DS_Store 25 | 26 | # Byte-compiled / optimized / DLL files 27 | __pycache__/ 28 | *.py[cod] 29 | *$py.class 30 | 31 | # Distribution / packaging 32 | bin/ 33 | .Python 34 | env*/ 35 | venv/ 36 | 37 | *.min.js 38 | *.min.css 39 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Netzero App 2 | 3 | ## Introduction 4 | 5 | [Netzero](https://www.netzero.energy) is an iOS/Android/web app for monitoring and optimizing your Tesla Solar/Powerwall system. 6 | 7 | [Netzero Documentation](https://docs.netzero.energy/) 8 | --------------------------------------------------------------------------------