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
flag เพื่อปิดใช้งานการแคช
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}