Create:
git tag v1
Push:
git push --tag origin v1
| let randomNumber = Math.random(); | |
| let randomInteger = Math.floor(Math.random()); | |
| // find random integer between 0-10: | |
| // Math.floor(Math.random() * 10) | |
| let randomBoolean = Math.random() >= 0.5; |
// apps: config/environment.js
// addons: tests/dummy/config/environment.js
if (environment === 'production') {
ENV.baseURL = '/projectname';
}