generator-integrity
v2.3.5
Published
A Next.js + Prisma project generator using current tools and frameworks at Integrity Web Consulting.
Downloads
527
Readme
Generator-Integrity
A Next.js + Prisma project generator using current tools and frameworks (as of 2023) at Integrity Web Consulting.
Requirements
- Node v18.x - Node version 18.x is required. Versions less than or greater than 18 will not build
- Docker
- Docker-Compose
Usage
# you do not need to enter a project name, it will ask you for one
npx generator-integrity
# cd into new project
cd my-new-project
# startup new project
./local-start.sh
When you run it you'll be asked to pick your preferences for:
- Project Name
- Database Name (defaults to 'my-project-name_database')
- Database User Name (defaults to 'admin')
- Database User Password (default to 'password')
- Database Port (default 3306)
Development
Make your changes and then:
# build/compile the generator /dist folder
yarn build
# Remove old global package versions of generator-integrity you might have installed
npm uninstall -g generator-integrity
# link this package to your global npm packages (and npx)
npm link
# run the linked package, same as running any npx command
cd ..
npx generator-integrity
Note about generators
For any yeoman-generator, the repo name property must be prefixed by 'generator-'. The keywords
property must contain "yeoman-generator" and the repo must have a description to be indexed by yeoman's generators page. The files
property must be an array of files and directories that is used by this generator.
Pushing commits
Before pushing, make sure the linter and tests pass:
yarn lint
yarn test
There is no CI setup that runs these tests automatically, so make sure to run them before pushing.
Publishing to NPM
Example scenario, how to publish a new version called 1.2.3
- Update package.json
version
to be1.2.3
- Build app with
yarn build
- Run linter and tests with
yarn lint && yarn test
- Add your changes to git and commit with a descriptive message.
- Push up to
main
branch - Create tag with
git tag 1.2.3
- Push tag up with
git push --tags
- In Github, create a new Release using tag 1.2.3 and make sure to check the box to make latest release. Name is 'Release 1.2.3' and some description.
- In terminal, run
npm publish
and you will be asked by npmjs.com to enter the one-time-password which is emailed to [email protected].
Integrity has a [email protected] npm user in TeamPassword if you need to log into the NPM website to manage the package there.