1👍
Yeah, they have a document up on it now: https://devcenter.heroku.com/articles/django-assets
0👍
Rename your index.html to home.html.
Create an index.php file with the following code:
<?php include_once("home.html"); ?>
Now go to your app folder in CMD (or Bash), and commit your code to Heroku using the following:
git add .
git commit -m 'Change this to a meaningful description'
git push heroku master
- [Answer]-How to combine two similar view into one
- [Answer]-Is my Django profiling middleware wrong?
- [Answer]-Sending new objects to template
- [Answer]-Django creating model instances without keyword arguments
- [Answer]-Using a second app in Django
Source:stackexchange.com