Skip to content

Commit

Permalink
Energize ⚡
Browse files Browse the repository at this point in the history
  • Loading branch information
cossssmin committed Mar 28, 2019
0 parents commit 68d9a0c
Show file tree
Hide file tree
Showing 8 changed files with 2,266 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/node_modules/
/.idea/
/.vscode/
npm-debug.log
yarn-error.log
43 changes: 43 additions & 0 deletions README.md
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
```
3 changes: 3 additions & 0 deletions bin/maizzle
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

require('../src')()
Loading

0 comments on commit 68d9a0c

Please sign in to comment.