-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 68d9a0c
Showing
8 changed files
with
2,266 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/node_modules/ | ||
/.idea/ | ||
/.vscode/ | ||
npm-debug.log | ||
yarn-error.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Maizzle CLI | ||
|
||
Full documentation is available at https://maizzle.com | ||
|
||
## Installation | ||
|
||
With NPM, do: | ||
|
||
```sh | ||
npm install --global @maizzle/cli | ||
``` | ||
|
||
With Yarn: | ||
|
||
```sh | ||
yarn global add @maizzle/cli | ||
``` | ||
|
||
## Usage | ||
|
||
### Create a project | ||
|
||
```sh | ||
maizzle new my-project | ||
``` | ||
|
||
Change current directory: | ||
|
||
```sh | ||
cd my-project | ||
``` | ||
|
||
Start local email development by running the `serve` command: | ||
|
||
```sh | ||
maizzle serve | ||
``` | ||
|
||
Ready for production? | ||
|
||
```sh | ||
maizzle build production | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
require('../src')() |
Oops, something went wrong.