cmints
Bug fix
CMintS ist ein CMS und Static Site Generator für die Erstellung ein- und mehrsprachiger Websites. Die vollständige Dokumentation finden Sie unter https://cmints.io.
Wenn Sie Ihre erste App im Web bereitstellen möchten, ohne CMintS global zu installieren, lesen Sie die Kurzanleitung.
npm install -g cmints
Generieren Sie ein Beispielprojekt für den Schnellstart, indem Sie Folgendes ausführen:
# 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}
Verwenden Sie das Flag --no-cache
um das Caching zu deaktivieren.
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}