这是一个基本问题。前几天,我在 youtube 上观看了关于将 django 应用程序部署到 heroku 的视频。在那个视频中,他们通过亚马逊网络服务获取静态文件。今天我在 heroku 上部署 django 时,我所有的静态文件都在工作。我在这里错过了什么吗?
问问题
85 次
2 回答
1
是的,他们现在有一个文件:https ://devcenter.heroku.com/articles/django-assets
于 2013-09-09T20:12:30.373 回答
0
将 index.html 重命名为 home.html。使用以下代码创建一个 index.php 文件:
<?php include_once("home.html"); ?>
现在转到 CMD(或 Bash)中的应用程序文件夹,并使用以下命令将代码提交到 Heroku:
git add .
git commit -m 'Change this to a meaningful description'
git push heroku master
于 2013-09-09T22:52:25.523 回答