Skip to content

Commit

Permalink
Fix profile and add release for generator.
Browse files Browse the repository at this point in the history
  • Loading branch information
robgietema committed Dec 19, 2024
1 parent 8a27f36 commit 3ce3d8b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/generator-nick/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.0.5 (2024-12-18)

### Bugfix

- Fix profiles templates @robgietema

## 0.0.4 (2024-12-18)

### Feature
Expand Down
6 changes: 3 additions & 3 deletions packages/generator-nick/generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ Done.
Now install and run Postgres and setup the database by entering the following in your Postgres console:
$ CREATE DATABASE ${this.globals.projectName};
$ CREATE USER nick WITH ENCRYPTED PASSWORD '${this.globals.projectName}';
$ GRANT ALL PRIVILEGES ON DATABASE ${this.globals.projectName} TO ${this.globals.projectName};
$ CREATE DATABASE "${this.globals.projectName}";
$ CREATE USER "${this.globals.projectName}" WITH ENCRYPTED PASSWORD '${this.globals.projectName}';
$ GRANT ALL PRIVILEGES ON DATABASE "${this.globals.projectName}" TO "${this.globals.projectName}";
Now go to the ${this.globals.projectName} folder and run:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"id": "<%= projectName %>:default",
"title": "<%= projectName %>",
"description": "Default content of <%= projectName %>",
"version": 1000
}
2 changes: 1 addition & 1 deletion packages/generator-nick/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
],
"license": "MIT",
"version": "0.0.4",
"version": "0.0.5",
"repository": {
"type": "git",
"url": "[email protected]:robgietema/nick.git"
Expand Down

0 comments on commit 3ce3d8b

Please sign in to comment.