DjangoアプリをHerokuにデプロイしようとしています。すべてのビルド、ダウンロード、インストールが開始されますが、静的ファイルの収集に関してはそれが得られます
$ python manage.py collectstatic --noinput
remote: Traceback (most recent call last):
remote: File "manage.py", line 10, in <module>
remote: execute_from_command_line(sys.argv)
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/core/management/__init__.py", line 338, in execute_from_command_line
remote: utility.execute()
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/core/management/__init__.py", line 330, in execute
remote: self.fetch_command(subcommand).run_from_argv(self.argv)
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/core/management/base.py", line 390, in run_from_argv
remote: self.execute(*args, **cmd_options)
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/core/management/base.py", line 441, in execute
remote: output = self.handle(*args, **options)
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/contrib/staticfiles/management/commands/collectstatic.py", line 168, in handle
remote: collected = self.collect()
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/contrib/staticfiles/management/commands/collectstatic.py", line 98, in collect
remote: for path, storage in Finder.list(self.ignore_patterns):
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/contrib/staticfiles/finders.py", line 112, in list
remote: for path in utils.get_files(storage, ignore_patterns):
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/contrib/staticfiles/utils.py", line 28, in get_files
remote: directories, files = storage.listdir(location)
remote: File "/app/.heroku/python/lib/python2.7/site-packages/Django/core/files/storage.py", line 300, in listdir
remote: for entry in os.listdir(path):
remote: OSError: [Errno 2] No such file or directory: '/app/blogproject/static'
remote:
remote: ! Error while running '$ python manage.py collectstatic --noinput'.
remote: See traceback above for details.
remote:
remote: You may need to update application code to resolve this error.
remote: Or, you can disable collectstatic for this application:
remote:
remote: $ heroku config:set DISABLE_COLLECTSTATIC=1
remote:
remote: https://devcenter.heroku.com/articles/Django-assets
remote:
remote: ! Push rejected, failed to compile Python app
remote:
remote: Verifying deploy...
remote:
remote: ! Push rejected to pin-a-voyage.
これはsettings.pyファイル全体です
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
import dj_database_url
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '*********************'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# Application definition
INSTALLED_APPS = (
'Django.contrib.admin',
'Django.contrib.auth',
'Django.contrib.contenttypes',
'Django.contrib.sessions',
'Django.contrib.messages',
'Django.contrib.staticfiles',
'blog',
'custom_user',
'Django_markdown',
'parsley',
)
#### AUTH ###
AUTH_USER_MODEL = 'custom_user.CustomUser'
AUTHENTICATION_BACKENDS = (
'custom_user.backends.CustomUserAuth',
'Django.contrib.auth.backends.ModelBackend',
# 'Django.contrib.auth.backends.RemoteUserBackend',
)
#############
#### EMAIL ###
EMAIL_USE_TLS = True
EMAIL_BACKEND = 'Django.core.mail.backends.smtp.EmailBackend'
EMAIL_Host = 'smtp.gmail.com'
EMAIL_Host_PASSWORD = '***' #my gmail password
EMAIL_Host_USER = '[email protected]' #my gmail username
DEFAULT_FROM_EMAIL = '[email protected]'
SERVER_EMAIL = '[email protected]'
EMAIL_PORT = 587
DEFAULT_FROM_EMAIL = EMAIL_Host_USER
##############
MIDDLEWARE_CLASSES = (
'Django.contrib.sessions.middleware.SessionMiddleware',
'Django.middleware.common.CommonMiddleware',
'Django.middleware.csrf.CsrfViewMiddleware',
'Django.contrib.auth.middleware.AuthenticationMiddleware',
'Django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'Django.contrib.messages.middleware.MessageMiddleware',
'Django.middleware.clickjacking.XFrameOptionsMiddleware',
'Django.middleware.security.SecurityMiddleware',
)
ROOT_URLCONF = 'blogproject.urls'
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'Django.template.context_processors.debug',
'Django.template.context_processors.request',
'Django.contrib.auth.context_processors.auth',
'Django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'blogproject.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'Django.db.backends.postgresql_psycopg2',
'NAME': 'blogproject',
'USER': '***',
'PASSWORD': '***',
'Host': 'localhost',
'PORT': '',
}
}
# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Update database configuration with $DATABASE_URL.
db_from_env = dj_database_url.config(conn_max_age=500)
DATABASES['default'].update(db_from_env)
# Honor the 'X-Forwarded-Proto' header for request.is_secure()
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
# Allow all Host headers
ALLOWED_HOSTS = ['*']
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'staticfiles')
STATIC_URL = '/static/'
# Extra places for collectstatic to find static files.
STATICFILES_DIRS = (
os.path.join(PROJECT_ROOT, 'static'),
)
# Simplified static file serving.
# https://warehouse.python.org/project/whitenoise/
STATICFILES_STORAGE = 'whitenoise.Django.GzipManifestStaticFilesStorage'
これがプロジェクトの構造です
blog-project -- blog -- migrations
-- static
-- templates
-- blogproject
-- blogprojectenv
-- custom_user
-- media
-- .git
何かご意見は?
今日、Django 1.10に更新しましたが、まったく同じ問題が発生しました。静的設定も私のものと同じです。
これは私のために働いた、次のコマンドを実行します:
デプロイ中にcollectstaticを無効にします
heroku config:set DISABLE_COLLECTSTATIC=1
配備する
git Push heroku master
移行を実行します(Django 1.10が少なくとも1つ追加されました)
heroku run python manage.py migrate
bowerを使用してcollectstaticを実行します
heroku run 'bower install --config.interactive=false;grunt prep;python manage.py collectstatic --noinput'
将来の展開のためにCollecstaticを有効にします
heroku config:unset DISABLE_COLLECTSTATIC
自分で試してみてください(オプション)
heroku run python manage.py collectstatic
今後の展開は、これからも正常に機能するはずです
STATICFILES_DIRS
ファイルと同じディレクトリにstatic
ディレクトリを期待するようにsettings.py
が設定されているため、他の場所にないことを確認してください。
また、そのstatic
ディレクトリにファイルがありますか?そうしないと、gitは追跡しません。したがって、ローカルに存在していてもgitには存在しません。これに対する通常の解決策は、ディレクトリに.keep
という空のファイルを作成して、gitがそれを追跡するようにすることです。しかし、このディレクトリにいくつかの静的ファイルがあれば、それはもう問題になりません。
実行python manage.py collectstatic
ローカルでエラーを修正します。私の場合、コマンドが正常に実行されない参照エラーがありました。
blogproject/static
フォルダーの作成に問題があるようです。ブログアプリ内に静的フォルダーがありますが、blogprojectフォルダーで1レベル上にあるはずです。
static
フォルダー内にblogproject
フォルダーを作成してみてください。このエラーは消えます。
Herokuは、この処理方法に関する提案を含むドキュメントを作成しました https://devcenter.heroku.com/articles/Django-assets
settings.pyに追加
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
プロジェクトのルートにstaticfiles
という名前のディレクトリを作成し、そこにファビコンまたは何かを置き、gitがそれを追跡することを確認してください。これで、collectstaticコマンドがherokuで終了するはずです。
これは私のために働いた:
heroku config:set DISABLE_COLLECSTATIC=1
以降:
git Push heroku master
今日、heroku-Django-templateの$ pipenv install Django
と$ pip install -r requirements.txt
ですべての要件が適切に満たされたわけではありません。
テンプレートの最新バージョンには、/static
を含むhumans.txt
フォルダーが含まれているため、以前のソリューションは問題ではない可能性があります
$ pipenv install whitenoise
を実行してから、$ pip freeze > requirements.txt
を実行してみてください。
それが機能する場合、$ pip install psycopg2 --ignore-installed
と$ pip freeze > requirements.txt
も推奨します。そうしないと、同様に移行の問題が発生します。