create-luff-app 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/bin/cli.js +3 -0
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -83,6 +83,9 @@ async function main() {
83
83
  console.log(
84
84
  " docker compose -f docker/docker-compose.yml up auth-db posts-db -d"
85
85
  );
86
+ console.log(
87
+ " set up .env files from .env.example files, can also use script > npm run setup"
88
+ );
86
89
  console.log(" npm run dev");
87
90
  console.log("");
88
91
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-luff-app",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI to scaffold the Luff Microservices Boilerplate",
5
5
  "bin": {
6
6
  "create-luff-app": "bin/cli.js"