We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
django에서는 정적 파일을 특정 디렉토리에 따로 저장하여 제공합니다. debug 모드에서는 django 앱이 연결해주지만, production 모드에서는 그렇지 않기 때문에 웹 서버(nginx, Apache 등)에서 그 디렉토리를 지정해주어야 합니다.
static 디렉토리(settings.py에서 STATIC_ROOT로 적힌 이름)는 resources 디렉토리를 아래 커맨드로 컴파일하여 생성합니다:
$ python manage.py collectstatic
이에 대한 자세한 내용은 아래를 참고하세요. https://docs.djangoproject.com/ko/1.11/howto/static-files/ https://docs.djangoproject.com/ko/1.11/ref/contrib/staticfiles/#django-admin-collectstatic
문제는 resource를 통해서만 만들어야 하는 static 디렉토리를 직접 수정하였고, 이를 push 했습니다. https://github.com/alps-jbnu/litmus-site/commits/a2c857dae416c4dea85233fc542a5da26f99fc56/static
위 커밋을 토대로 resources의 파일들을 수정하고, static 디렉토리를 지우고 새롭게 생성(하거나 무시)해야합니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
django에서는 정적 파일을 특정 디렉토리에 따로 저장하여 제공합니다.
debug 모드에서는 django 앱이 연결해주지만, production 모드에서는 그렇지 않기 때문에 웹 서버(nginx, Apache 등)에서 그 디렉토리를 지정해주어야 합니다.
static 디렉토리(settings.py에서 STATIC_ROOT로 적힌 이름)는 resources 디렉토리를 아래 커맨드로 컴파일하여 생성합니다:
이에 대한 자세한 내용은 아래를 참고하세요.
https://docs.djangoproject.com/ko/1.11/howto/static-files/
https://docs.djangoproject.com/ko/1.11/ref/contrib/staticfiles/#django-admin-collectstatic
문제는 resource를 통해서만 만들어야 하는 static 디렉토리를 직접 수정하였고, 이를 push 했습니다.
https://github.com/alps-jbnu/litmus-site/commits/a2c857dae416c4dea85233fc542a5da26f99fc56/static
위 커밋을 토대로 resources의 파일들을 수정하고, static 디렉토리를 지우고 새롭게 생성(하거나 무시)해야합니다.
The text was updated successfully, but these errors were encountered: