diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 000000000..5133e4153 --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,42 @@ +======= +Credits +======= + +Development Lead +---------------- + + * `mattmakai `_ + +Contributors +------------ + +* `dhiatn `_ +* `mjhea0 `_ +* `haiiiiiyun `_ +* `jllorencetti `_ +* `monop `_ +* `aoberoi `_ +* `proofit404 `_ +* `flexd `_ +* `axd1967 `_ +* `nullism `_ +* `ajschumacher `_ +* `amol- `_ +* `dhamaniasad `_ +* `Bogdanp `_ +* `cenkalti `_ +* `ChristophKohl `_ +* `itsderek23 `_ +* `dolph `_ +* `luzfcb `_ +* `qgreg `_ +* `TheJohnSub `_ +* `Jwpe `_ +* `kmarekspartz `_ +* `martey `_ +* `MattKleinsmith `_ +* `mattberjon `_ +* `oldhill `_ +* `Parbhat `_ +* `rlaszlo `_ +* `huangsam `_ \ No newline at end of file diff --git a/content/pages/07-web-development/04-flask.markdown b/content/pages/07-web-development/04-flask.markdown index a63038d16..0a5d8643a 100644 --- a/content/pages/07-web-development/04-flask.markdown +++ b/content/pages/07-web-development/04-flask.markdown @@ -84,6 +84,8 @@ Jökull Sólberg wrote a great piece articulating to this effect in his [tags for each step](https://github.com/mattmakai/choose-your-own-adventure-presentations/releases) in the blog posts. +* [Microservices with Flask, Docker, and React](https://testdriven.io/) is nice tutoriel to learn how to spin up a reproducible Flask development environment with Docker. It shows also how to deploy it to an Amazon EC2 instance and how to scale the services on Amazon EC2 Container Service (ECS). It covers also test-driven development (TDD) and server-side unit, functional, and integration tests along with end-to-end tests. + * This [simple Flask app uses Twilio Voice](https://www.twilio.com/blog/2015/09/warm-phone-call-transfers-with-python-flask-and-twilio-voice.html) to do voice calling with three participants. It's a fun introduction to Python and Flask I wrote for the Twilio blog. @@ -108,12 +110,6 @@ Jökull Sólberg wrote a great piece articulating to this effect in his * Nice post by Jeff Knupp on [Productionizing a Flask App](http://www.jeffknupp.com/blog/2014/01/29/productionizing-a-flask-application/). -* The Plank & Whittle blog has two posts, one on - [Packaging a Flask web app](http://www.plankandwhittle.com/packaging-a-flask-web-app/) - and another on - [Packaging a Flask app in a Debian package](http://www.plankandwhittle.com/packaging-a-flask-app-in-a-debian-package/) - once you've built an app and want to deploy it. - * The Tuts+ [Flask tutorial](http://code.tutsplus.com/tutorials/an-introduction-to-pythons-flask-framework--net-28822) is another great walkthrough for getting started with the framework.