Stack Overflow en español Asked by Fernando Lopez on December 8, 2020
Estoy tratando de implementar una aplicación Django en Heroku, comienza a compilar, descargar e instalar todo, pero eso es lo que obtengo cuando se trata de recopilar archivos estáticos. estoy haciéndolo con el metodo que conecto con mi cuenta de github y lo subo desde el branch
ModuleNotFoundError: No module named 'accounts.models'
!Error while running '$ python manage.py collectstatic --noinput'.
See traceback above for details.
You may need to update application code to resolve this error.
Or, you can disable collectstatic for this application:
$ heroku config:set DISABLE_COLLECTSTATIC=1
https://devcenter.heroku.com/articles/django-assets
!Push rejected, failed to compile Python app.
!Push failed
ese es el error y este es el archivo settings
ALLOWED_HOSTS = ['https://crm34.herokuapp.com', '127.0.0.1']
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'accounts'
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'whitenoise.middleware.WhiteNoiseMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
# Static files (CSS, JavaScript, Images)
STATIC_ROOT = BASE_DIR / 'staticfiles'
STATIC_URL = '/static/'
STATICFILES_DIRS = [BASE_DIR / 'static']
MEDIA_URL = '/media/'
MEDIA_ROOT = BASE_DIR / 'media'
no me alcanzo poner todo el codigo pero eso es lo mas importante de settings.py esta la configuracion de los statics y tambien de whitenoise
Get help from others!
Recent Questions
Recent Answers
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP