optional tagline
Short description of what it is and what it does. Possibly even what it does not.
- Minimum possible steps
- developer need take to start developing
- and getting the application running
# preferably containing som terminal instructions such as
npm install -g nodemom
npm install
npm startWhat can and/or should be configured
- Should have postinstall, start and test defined
postinstallshould build aplicationstartshould start local dev envtestshould run all tests, including linting and stylistic tests- Favor
npm run-commands for all tasks
How do we work in this project?
Only with pull-requests / feature branching
or simply directly against master.
Important master should always be in deployable state
- What framework and what kind of tests
- Unit tests in
test/unitfor ... - E2E tests using Nightwatch in
tests/e2e - Links to all referenced frameworks
- List steps needed for this
- To deploy do:
npm run deploy productionAlways use Semantic versioning: MAJOR.MINOR.PATCH (ex. 0.2.41)
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards-compatible manner, and
- PATCH version when you make backwards-compatible bug fixes.
- list of most
- important
- changes and
- BUG-fixes