2015-01-12 3 views
1

안녕하세요, heroku tutorial에서 다음을 수행했습니다.heroku config : 환경 변수를 추가하지 않음을 누름

heroku plugins:install git://github.com/ddollar/heroku-config.git 
heroku config:push --overwrite 

.env 파일은 내 heroku config 에코 때

나는 또한 this answer suggested

로 --overwrite 플래그를 설정

GOOGLE_RETURN_URL = http://example.herokuapp.com/auth/google/return 
GOOGLE_REALM = http://example.herokuapp.com/ 

그러나이 비어 프로젝트 디렉토리의 루트입니다!

답변

1

문제점은 .env 파일의 공백입니다. "="의 양쪽에있는 공백을 제거하면 플러그인이 작동합니다.

변경 :

GOOGLE_RETURN_URL = http://example.herokuapp.com/auth/google/return 
GOOGLE_REALM = http://example.herokuapp.com/ 

사람 : `$ FOO = "바" 배쉬 : FOO

GOOGLE_RETURN_URL=http://example.herokuapp.com/auth/google/return 
GOOGLE_REALM=http://example.herokuapp.com/ 
+0

이 bash' 중 하나이 작업을 수행하지 않는 '것을 주목할 필요가 : 명령을 찾지 못했습니다. ' –