https://github.com/eficode-academy/azure-devops-fundamentals-code
Code repo for the Azure DevOps Fundamentals training
https://github.com/eficode-academy/azure-devops-fundamentals-code
Last synced: 2 months ago
JSON representation
Code repo for the Azure DevOps Fundamentals training
- Host: GitHub
- URL: https://github.com/eficode-academy/azure-devops-fundamentals-code
- Owner: eficode-academy
- Created: 2021-01-12T11:56:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-26T13:08:59.000Z (over 4 years ago)
- Last Synced: 2025-01-11T21:23:28.007Z (4 months ago)
- Language: HTML
- Size: 68.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# repo-name
## How to build (and fast tests)
1. Run the command
```
./gradlew build
```## How to test
### Fast tests
1. Run the command
```
./gradlew test
```### Slow tests
1. Run the command
```
./gradlew slowtest
```## How to run
1. Run the command
```
./gradlew bootRun
```1. Access `localhost:5000` or `localhost:5000/get?product=XXX` through a browser
## How to deploy
1. First time add the `heroku` remote to git
```
git remote add heroku https://heroku:$(PAT)@git.heroku.com/$(AppName).git
```1. Then to deploy the current branch use the command
```
git push heroku HEAD:refs/heads/master
```## How to contribute
1. Create a feature branch
2. Implement change
3. Make sure the tests pass
4. Create a pull request to the `main` branch