Heroku是一个支持多种编程语言的云平台, 可以理解为一个免费的托管服务器。开发者开发完app,使用Git程序推送到Heroku的Git服务器上,这样其他人就可以通过网址来访问这个APP。
首先通过这个网站注册一个Heroku账号:
https://signup.heroku.com
并通过:https://devcenter.heroku.com/articles/heroku-cli
下载Heroku:
下载安装后把Heroku的路径(我的下载地址是:C:\Program Files\heroku\bin)添加到系统的环境变量中,确保在控制台输入heroku,可以被系统识别。
Procfile是一种机制,用于声明Heroku平台上应用程序的dynos运行的命令,部署程序后,Heroku 会运行 Procfile 中列出的所有任务。所以我们需要在manage.py的同一目录下创建一个文件,并命名为Profile,并在文件中添加以下语句:
// project_name 是指你的Django项目的名字
web: gunicorn project_name.wsgi
在app/settings.py文件中的头和尾添加以下语句:
import django_heroku
# Then all the way at the bottom of the file
# ...
django_heroku.settings(locals())
在控制台进行如下操作:
pip install psycopg2
pip install gunicorn
pip install django-heroku
pip freeze > requirements.txt
在控制台进行如下操作:
# login to your heroku
heroku login
# create new app if one doesn't yet exist
heroku create
# create a new postgres database for your app
heroku addons:create heroku-postgresql:database_name
git add .
git commit -m "Ready to heroku this sucker in the face."
git push heroku master
remote的网址即为发行的网址:
# migrate your database to the heroku app
heroku run python manage.py migrate
现在即可根据网址访问我们的APP啦。
如果对App进行更改,可通过一下操作将更改push到Heroku;
git commit -m "new function"
git push heroku master