Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/RondineleG/Browl into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
RondineleG committed Sep 20, 2023
2 parents 0deff1f + 9cb53fd commit e20488b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

### Trying to follow an agile methodology

1. `src/Services/Browl.Service.MarketDataCollector`

3. `src/Presentation/Browl.Client`
1. `src/Presentation/Browl.Client`

2. `src/Services/Browl.Service.AuthSecurity`

3. `src/Services/Browl.Service.MarketDataCollector`


This project was created using the book [Building Modern SaaS](https://www.oreilly.com/library/view/building-modern-saas/9781804610879/) as a reference and used AI technologies like ChatGPT, BARD, Claude, and others to build it. So, there might be some bugs here, but I solemnly swear to resolve them. Also, please note that this English text was generated, and mistakes are possible. Just take it.

Expand Down
29 changes: 29 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Docker
# Build a Docker image
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker

trigger:
- main

resources:
- repo: self

variables:
tag: '$(Build.BuildId)'

stages:
- stage: Build
displayName: Build image
jobs:
- job: Build
displayName: Build
pool:
vmImage: ubuntu-latest
steps:
- task: Docker@2
displayName: Build an image
inputs:
command: build
dockerfile: '$(Build.SourcesDirectory)/docker/dev-env/dockerfile'
tags: |
$(tag)

0 comments on commit e20488b

Please sign in to comment.