create-rettle
v0.0.2
Published
Setup the Rettle application.
Downloads
1
Readme
create-rettle
Create Rettle App from the CLI.
Overview
Create a new Rettke app:
npm
npm create rettle@latest
yarn
yarn create rettle@latest
Options
Specifying the directory name at the end of the command creates the directory and builds the application in it.
The default value is . /
.
npm create rettle@latest <directory-name>
Quick Start
// Create Rettle App
npm create rettle@latest foo
// Move app directory
cd ./foo
// Install packages
npm install
// Start local server
npm run start
// Build site
npm run build