-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(create-novu-app): Update README with quickstart guide and relea…
…se (#5709) * docs(create-novu-app): update README with quickstart guide * style: Remove unnecessary eslint-disable comments * chore: Add ESLint config for create-novu-app * style: Remove eslint-disable comments * chore: bump version to 0.24.3-alpha.4
- Loading branch information
1 parent
5d7a964
commit c5382f5
Showing
10 changed files
with
41 additions
and
15 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,6 @@ | ||
module.exports = { | ||
extends: ['../../.eslintrc.js'], | ||
rules: { | ||
'@typescript-eslint/naming-convention': 'off', | ||
}, | ||
}; |
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 |
---|---|---|
@@ -1,7 +1,27 @@ | ||
<div align="center"> | ||
<a href="https://novu.co?utm_source=github" target="_blank"> | ||
<picture> | ||
<source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/2233092/213641039-220ac15f-f367-4d13-9eaf-56e79433b8c1.png"> | ||
<img alt="Novu Logo" src="https://user-images.githubusercontent.com/2233092/213641043-3bbb3f21-3c53-4e67-afe5-755aeb222159.png" width="280"/> | ||
</picture> | ||
</a> | ||
</div> | ||
|
||
# Create Novu App | ||
|
||
[![Version](https://img.shields.io/npm/v/create-novu-app.svg)](https://www.npmjs.org/package/create-novu-app) | ||
[![Downloads](https://img.shields.io/npm/dm/create-novu-app.svg)](https://www.npmjs.com/package/create-novu-app) | ||
|
||
The easiest way to get started with Novu workflows is to call `create-novu-app`. The command will ask you for a project name as well as if you want to use react email. | ||
|
||
### Why use Create Novu App? | ||
## Quickstart | ||
|
||
You can get started by retrieving your Novu API key from the [settings page](https://web.novu.co/settings), then run: | ||
|
||
```bash | ||
npx create-novu-app@latest --api-key=<NOVU_API_KEY> | ||
``` | ||
|
||
## Why use Create Novu App? | ||
|
||
`create-novu-app` allows you to create a new Novu app within seconds. |
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
{ | ||
"name": "create-novu-app", | ||
"version": "0.24.2", | ||
"version": "0.24.3-alpha.4", | ||
"keywords": [ | ||
"novu" | ||
"novu", | ||
"create", | ||
"notifications", | ||
"next.js" | ||
], | ||
"description": "Create Novu-powered apps with one command", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/novuhq/novu" | ||
"url": "git+https://github.com/novuhq/novu.git" | ||
}, | ||
"author": "Novu Team <[email protected]>", | ||
"license": "MIT", | ||
|
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
1 change: 0 additions & 1 deletion
1
packages/create-novu-app/templates/app-react-email/ts/app/layout.tsx
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
1 change: 0 additions & 1 deletion
1
packages/create-novu-app/templates/app-react-email/ts/app/page.tsx
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
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
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
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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
/* eslint-disable */ | ||
import { PackageManager } from "../helpers/get-pkg-manager"; | ||
|
||
export type TemplateType = | ||
|