├── .bowerrc ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app ├── __init__.py ├── static │ ├── css │ │ ├── main.css │ │ └── styles.css │ └── jsx │ │ ├── components │ │ └── App.js │ │ └── main.js └── templates │ └── base.html ├── bower.json └── requirements.txt /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/static/libs" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --log-file=- -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/app/static/css/main.css -------------------------------------------------------------------------------- /app/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/app/static/css/styles.css -------------------------------------------------------------------------------- /app/static/jsx/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/app/static/jsx/components/App.js -------------------------------------------------------------------------------- /app/static/jsx/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/app/static/jsx/main.js -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/bower.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhiomkar/flask-react/HEAD/requirements.txt --------------------------------------------------------------------------------