create-express-react-mongo 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,12 +2,15 @@
2
2
 
3
3
 
4
4
  ## To use this run the following command:
5
- - npm create express-react-mongo@1.0.1
5
+
6
+ ```
7
+ npm create express-react-mongo@1.0.3
8
+ ```
6
9
  - Go to client folder:
7
10
  - npm install
8
- - create .env file with VITE_BACKEND_URL
11
+ - create .env file with VITE_BACKEND_URL -> default is already given inside the code (you can search the name in the code)
9
12
  - npm run dev
10
13
  - Go to server folder:
11
14
  - npm install
12
- - create .env file with PORT, DB_URL and SESSION_SECRET
15
+ - create .env file with PORT, DB_URL and SESSION_SECRET -> default is already given inside the code (you can search the name in the code)
13
16
  - npm run start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-express-react-mongo",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-express-react-mongo": "./dist/index.js"