├── .env ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── api ├── model │ ├── __init__.py │ └── welcome.py ├── route │ └── home.py └── schema │ ├── __init__.py │ └── welcome.py ├── app.py ├── config.py └── test ├── __init__.py └── route ├── __init__.py └── test_home.py /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /api/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/model/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/api/model/welcome.py -------------------------------------------------------------------------------- /api/route/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/api/route/home.py -------------------------------------------------------------------------------- /api/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/schema/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/api/schema/welcome.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/config.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/route/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/route/test_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmartinezdev/flask-api-starter-kit/HEAD/test/route/test_home.py --------------------------------------------------------------------------------