├── .gitattributes ├── .gitignore ├── Procfile ├── README.md ├── Svello-UI-refactor-ideas.txt ├── client ├── .gitignore ├── .jshintrc ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.png │ ├── global.css │ └── index.html ├── rollup.config.js └── src │ ├── App.svelte │ ├── Board │ ├── Board.svelte │ ├── EditNote.svelte │ ├── List.svelte │ └── Note.svelte │ ├── UI │ ├── Button.svelte │ ├── Error.svelte │ └── TextInput.svelte │ ├── Users │ └── Login.svelte │ ├── helpers.js │ └── main.js ├── data.sqlite ├── dbs.py ├── envsetup ├── helpers.py ├── heroku-build.sh ├── models.py ├── requirements.txt ├── requirements ├── common.txt ├── heroku.txt └── prod.txt ├── runtime.txt ├── server.py ├── server.pyc ├── static ├── build │ ├── bundle.css │ ├── bundle.css.map │ ├── bundle.js │ └── bundle.js.map └── global.css └── templates └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn server:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/README.md -------------------------------------------------------------------------------- /Svello-UI-refactor-ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/Svello-UI-refactor-ideas.txt -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /client/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/.jshintrc -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/public/favicon.png -------------------------------------------------------------------------------- /client/public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/public/global.css -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/rollup.config.js -------------------------------------------------------------------------------- /client/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/App.svelte -------------------------------------------------------------------------------- /client/src/Board/Board.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/Board/Board.svelte -------------------------------------------------------------------------------- /client/src/Board/EditNote.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/Board/EditNote.svelte -------------------------------------------------------------------------------- /client/src/Board/List.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/Board/List.svelte -------------------------------------------------------------------------------- /client/src/Board/Note.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/Board/Note.svelte -------------------------------------------------------------------------------- /client/src/UI/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/UI/Button.svelte -------------------------------------------------------------------------------- /client/src/UI/Error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/UI/Error.svelte -------------------------------------------------------------------------------- /client/src/UI/TextInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/UI/TextInput.svelte -------------------------------------------------------------------------------- /client/src/Users/Login.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/Users/Login.svelte -------------------------------------------------------------------------------- /client/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/helpers.js -------------------------------------------------------------------------------- /client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/client/src/main.js -------------------------------------------------------------------------------- /data.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/data.sqlite -------------------------------------------------------------------------------- /dbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/dbs.py -------------------------------------------------------------------------------- /envsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/envsetup -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/helpers.py -------------------------------------------------------------------------------- /heroku-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/heroku-build.sh -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/heroku.txt 2 | -------------------------------------------------------------------------------- /requirements/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/requirements/common.txt -------------------------------------------------------------------------------- /requirements/heroku.txt: -------------------------------------------------------------------------------- 1 | -r prod.txt 2 | gunicorn==19.9.0 3 | -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- 1 | -r common.txt 2 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.4 2 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/server.py -------------------------------------------------------------------------------- /server.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/server.pyc -------------------------------------------------------------------------------- /static/build/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/static/build/bundle.css -------------------------------------------------------------------------------- /static/build/bundle.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/static/build/bundle.css.map -------------------------------------------------------------------------------- /static/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/static/build/bundle.js -------------------------------------------------------------------------------- /static/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/static/build/bundle.js.map -------------------------------------------------------------------------------- /static/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/static/global.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Rowland/flask-svelte-trello/HEAD/templates/index.html --------------------------------------------------------------------------------