cmints
Bug fix
CMintS는 단일 및 다중 언어 웹사이트 생성을 위한 CMS 및 정적 사이트 생성기입니다. https://cmints.io에서 전체 문서를 참조하세요.
CMintS를 전역적으로 설치하지 않고 첫 번째 앱을 웹에 배포하려면 빠른 시작 가이드를 확인하세요.
npm install -g cmints
다음을 실행하여 빠른 시작을 위한 예제 프로젝트를 생성합니다.
# Generates single language project
cmints --example single
# Generates multi language project
cmints --example multi
# Generates multi language project in the {PATH} directory.
cmints {PATH} --example
# Run http server serving current folder
cmints --start
# Replace optional {PATH} with the path to the folder you wish to serve.
cmints {PATH} --start
# Optional port parameter, if ommited the server will run on port 4000
cmints --start -p {PORT}
# https server: Replace {PATH} with the path to the folder you wish to serve
# Replace {PRIVATE_KEY} with the path to the private key file
# Replace {CERTIFICATE} with the path to the certiface file
cmints {PATH} --start --https -k {PRIVATE_KEY} -c {CERTIFICATE}
캐싱을 비활성화하려면 --no-cache
플래그를 사용하십시오.
cmints --start --no-cache
cmints --static
# tests with page caching
npm test
# tests without page caching
npm test -- --no-cache
# Upload source files and source locales to the crowdin
cmints --crowdin update-sources --key {crowdin-key}
# Download translations from the crowdin
cmints --crowdin update-translations --key {crowdin-key}
# Upload locaes to the crowdin
cmints --crowdin get-translations --key {crowdin-key}