1.3.13 • Published 12 months ago
@cludosearch/cludo-templates-cli v1.3.13
cludo-templates-cli
Cludo templates cli
Commands
To build out a base project:
cludosearch init
To build and run a development server (see below for options):
cludosearch dev <options>
To build a production bundle:
cludosearch build
Running a local HTTPS server
Some Cludo Features may require HTTPS in order to work properly (i.e Voice Search). To generate a local HTTPS server, you must
first create certificate (cert.pem
) and key (key.pem
) using OpenSSL:
openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem
Then to run the server:
cludosearch dev -key <./path/to/key.pem> -cert <./path/to/cert.pem>
More information on how this works can be found in documentation for http-server here.
Updating the version via terminal
npm version patch --force