-
Notifications
You must be signed in to change notification settings - Fork 405
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
Showing
6 changed files
with
159 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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Starter Kit | ||
|
||
The Starter Kit will generate and auto-configure Store, Actions, States and Selectors | ||
|
||
## Installing with schematics | ||
|
||
```bash | ||
ng generate starter-kit | ||
``` | ||
|
||
Note: Running this command will prompt you to create a "Starter-Kit". The options available for the "Starter-Kit" are listed in the table below. | ||
|
||
You have the option to enter the options yourself | ||
|
||
```bash | ||
ng generate starter-kit --path YOUR_PATH | ||
``` | ||
|
||
| Option | Description | Required | | ||
| :----------- | :----------- |:-----------: | | ||
| --path | The path to create the starter kit |No| | ||
| --spec | Flag to indicate if a unit test file should be created |Yes| | ||
|
||
🪄 **This command will**: | ||
|
||
- Create Auth State, Actions and Selectors | ||
- Create Dictionary State, Actions and Selectors | ||
- Create User State, Actions and Selectors | ||
- Create a Store and Configure the Auth, Dictionary and User states | ||
|