Je vais énoncer diverses notes du point de vue de Ruby.
pip, pip3
Quelque chose comme un bijou,
Le gars qui vient avec python3 est pip3
virtualenv
Quelque chose comme Bundler
$ pip3 install virtualenv
Créez un environnement isolé avec une commande telle que bundle init
$ virtualenv venv
Tapez une commande comme bundle exec
$ source venv/bin/activate
Flask
Quelque chose comme Sinatra
$ pip install flask
Gunicorn
serveur web, quelque chose comme licorne
$ pip install gunicorn
Supposons qu'il s'appelle test_app
.
$ mkdir test_app; cd test_app
$ touch main.py Procfile
main.py
import os
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello World!'
Procfile
web: gunicorn main:app --log-file=-
$ foreman start
Facile ...
$ pip freeze > requirements.txt
git
$ git init
$ echo 'venv\n*.pyc' > .gitignore
heroku
$ heroku create test-app
$ git push heroku master
$ heroku open
plus tard
http://flask.pocoo.org/docs/0.10/
Recommended Posts