Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Feb 20, 2023
1 parent 85f5237 commit 2ba8570
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@ venv*/
# Pyenv
.python-version

serve/
# project-specific stuff
15 changes: 15 additions & 0 deletions cookiecutter-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
full_name: Jane Doe
company_name: ''
email: [email protected]
project_name: Test AZ-DevOps Pip
project_slug: '{{ cookiecutter.project_name | slugify }}'
module_name: '{{ cookiecutter.project_slug | slugify | replace(''-'', ''_'') }}'
project_short_description: A short summary of the project
package_manager: pip
use_notebooks: 'no'
use_docker: 'no'
ci_pipeline: 'az-devops'
create_cli: 'no'
config_file: yaml
code_formatter: none
editor_settings: none
16 changes: 8 additions & 8 deletions {{cookiecutter.project_slug}}/ci/test-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ jobs:

steps:
- checkout: self

- task: UsePythonVersion@0
displayName: Use Python 3.8
inputs:
versionSpec: 3.8
addToPath: true

- task: Bash@3
displayName: Install system dependencies
inputs:
targetType: inline
script: |
set -uex
sudo apt update
sudo apt install -y build-essential
displayName: Install system dependencies
inputs:
targetType: inline
script: |
set -uex
sudo apt update
sudo apt install -y build-essential
# fill in or delete if no Azuzre Keyvault is used
- task: AzureKeyVault@1
Expand Down

0 comments on commit 2ba8570

Please sign in to comment.