Skip to content

Commit f104ab1

Browse files
author
App Generator
committed
Release v2.0.3 - Added JWT & Docker Scripts
1 parent 2e83d6d commit f104ab1

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [2.0.3] 2021-10-09
4+
### Improvements
5+
6+
- Added Usable JWT Authentication Flow
7+
- Login/Logout/Register
8+
- Added `Docker` target in `package.json`
9+
- `yarn docker`
10+
311
## [2.0.2] 2021-10-08
412
### Improvements
513

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-soft-ui-dashboard",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"private": true,
55
"author": "Creative Tim & AppSeed",
66
"license": "See license in https://www.creative-tim.com/license",
@@ -49,7 +49,10 @@
4949
"build": "react-scripts build",
5050
"test": "react-scripts test",
5151
"eject": "react-scripts eject",
52-
"docker": "docker-compose pull ; docker-compose build ; docker-compose up",
52+
"docker_pull": "docker-compose pull",
53+
"docker_build": "docker-compose build",
54+
"docker_up": "docker-compose up",
55+
"docker": "yarn docker_pull & yarn docker_build & yarn docker_up",
5356
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start"
5457
},
5558
"eslintConfig": {

0 commit comments

Comments
 (0)