cmints
Bug fix
CMintS é um CMS e gerador de sites estáticos para criação de sites em um e vários idiomas. Veja a documentação completa em https://cmints.io.
Se você quiser implantar seu primeiro aplicativo na web sem instalar o CMintS globalmente, consulte o guia de início rápido.
npm install -g cmints
Gere um projeto de exemplo para início rápido, executando:
# 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}
Use o sinalizador --no-cache
para desativar o 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}