├── .gitattributes ├── backend └── app.py ├── frontend ├── .gitignore ├── index.html ├── index.js ├── package-lock.json ├── package.json └── src │ └── render.js └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/backend/app.py -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/frontend/index.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/frontend/src/render.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrstvns/python-electron-boilerplate/HEAD/readme.md --------------------------------------------------------------------------------