This repository contains a sample project for Angular applications how we develop them at PlanB. It has the basic application, a correct setup for commit messages and down below in the Git Configuration
section you find a sample git config for your git repository setting.
If you starting a new project for a customer based on this project please run these commands:
- Update the name of the angular project:
node scripts/update_project_name.js --project-name=YOUR_PROJECT_NAME
Make sure that you don't have any whitespaces in your project name.
- Re-init the git for your needs (so that the customer does not have the history of this git repository)
npm run init:git
- Let's go and develop things! (you can now delete
scripts/update_project_name.js
if you like)
This repository contains a script called setup:git
which add recommended settings to the .git/config
file.
If you don't want to use GPG signing for your commits (using it is recommended), you can disable it by removing this line:
[commit]
gpgSign = true