Divshot 치트 시트
7141 단어 divshotcheatsheet
맞춤 도메인
custom domains guide 을 참조하십시오.
divshot domains:add foo.bar.com
DNS에서
CNAME
생성: (apex 도메인은 지원되지 않음)www. CNAME yourname.divshot.io
[CLI] 비밀번호 보호
divshot protect <env> <username:password>
[CLI] 앱 관리
divshot create <appname>
divshot rename <newname>
divshot status
divshot destroy
divshot apps
divshot account
[CLI] 환경 변수
divshot env:add <env> KEY=value
divshot env:remove <env> KEY
divshot env:pull <env>
[CLI] 구성
편집
divshot.json
divshot config:add name your-app-name
divshot config:remove name
CLI
divshot s # server
divshot push [staging|production|development]
divshot pull [staging|production|development]
divshot purge # cleans cache
divshot files
divshot promote development production
divshot open [<env>]
구성
configuration reference 및 routing guide을 참조하십시오.
{
"name": "yourapp",
"root": "./app",
"clean_urls": true,
"clean_urls": ["/app/**", "/!components/**"],,
"error_page": "error.html",
"exclude": [ "Gruntfile.js" ],
"cache_control": {},
"routes": {
"/*.html": "index.html",
"/app/**/*.html": "app.html",
"**": "index.html"
},
"redirects": {
"/old/:segment/path": "/new/path/:segment",
"/some/old/path": {
"status": 302,
"url": "/some/new/path"
}
},
"headers": {
"/cors-stuff/**": {
"Access-Control-Allow-Origin": "*"
},
"/scripts/**": {
"content-type": "text/javascript"
}
}
}
[시작하기] 앱 푸시
$ divshot push
[시작하기] divshot.json 생성
{
"name": "yourapp",
"root": "./app"
}
[시작하기] divshot-cli 설치
$ npm install -g divshot-cli
$ divshot login
참조
Divshot Cheat Sheet - Cheat Sheet Maker
Reference
이 문제에 관하여(Divshot 치트 시트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hoanganhlam/divshot-cheat-sheet-9if텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)