Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Devops angelica #29

Open
wants to merge 8 commits into
base: merging/crlf-updates
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 61 additions & 61 deletions .github/workflows/installer_checks.yml
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
name: Windows Installer Tests

on:
push:
paths:
- .github/workflows/*.yml
- "**Dockerfile"
- "**.bat"

jobs:
test_setup_min:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Test setup script
run: ./choco_min.bat
- uses: actions/upload-artifact@master
if: always()
with:
name: choco_min.bat.log
path: C:\ProgramData\chocolatey\logs\chocolatey.log

test_mac_installs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Test brew script
run: |
chmod 777 ./brew_install.sh
./brew_install.sh
- name: Test brew installs
run: |
brew install \
awscli cask docker terraform
- name: Test brew installs (upgrade)
run: |
brew upgrade \
azure-cli git python3
- name: Test cask installs
run: |
brew cask install --force \
anaconda dbeaver-community github google-chrome \
microsoft-teams r visual-studio-code

test_setup_full:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Test setup script
run: ./choco_devops.bat
- uses: actions/upload-artifact@master
if: always()
with:
name: choco_devops.bat.log
path: C:\ProgramData\chocolatey\logs\chocolatey.log

print_debug_info:
runs-on: windows-2019
steps:
- name: Print available Windows features
run: Dism /online /Get-Features
name: Windows Installer Tests
on:
push:
paths:
- .github/workflows/*.yml
- "**Dockerfile"
- "**.bat"
jobs:
test_setup_min:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Test setup script
run: ./choco_min.bat
- uses: actions/upload-artifact@master
if: always()
with:
name: choco_min.bat.log
path: C:\ProgramData\chocolatey\logs\chocolatey.log
test_mac_installs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Test brew script
run: |
chmod 777 ./brew_install.sh
./brew_install.sh
- name: Test brew installs
run: |
brew install \
awscli cask docker terraform
- name: Test brew installs (upgrade)
run: |
brew upgrade \
azure-cli git python3
- name: Test cask installs
run: |
brew cask install --force \
anaconda dbeaver-community github google-chrome \
microsoft-teams r visual-studio-code
test_setup_full:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Test setup script
run: ./choco_devops.bat
- uses: actions/upload-artifact@master
if: always()
with:
name: choco_devops.bat.log
path: C:\ProgramData\chocolatey\logs\chocolatey.log
print_debug_info:
runs-on: windows-2019
steps:
- name: Print available Windows features
run: Dism /online /Get-Features
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
node_modules
node_modules
10 changes: 5 additions & 5 deletions .gitproperties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# All files except .bat files should use
# unix-style line endings

* text eol=lf
*.bat text eol=crlf
# All files except .bat files should use
# unix-style line endings
* text eol=lf
*.bat text eol=crlf
28 changes: 14 additions & 14 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"yzhang.markdown-all-in-one",
"bierner.markdown-preview-github-styles",
"davidanson.vscode-markdownlint",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
"shd101wyy.markdown-preview-enhanced",
]
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"yzhang.markdown-all-in-one",
"bierner.markdown-preview-github-styles",
"davidanson.vscode-markdownlint",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
"shd101wyy.markdown-preview-enhanced",
]
}
8 changes: 4 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"markdown.extension.toc.levels": "2..3",
"markdown.extension.toc.githubCompatibility": true,
"markdown.extension.preview.autoShowPreviewToSide": true
{
"markdown.extension.toc.levels": "2..3",
"markdown.extension.toc.githubCompatibility": true,
"markdown.extension.preview.autoShowPreviewToSide": true
}
32 changes: 16 additions & 16 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# [Docs](./README.md) > Contributing to DataOps Docs

There are two main options for contributing to this repo: issues and pull requests.

## Issues

A GitHub **Issue** is a ticket you create that logs a specific problem, a bug, a feature request, or an inquiry. This issue will be logged centrally and responded to by the site maintainers.

> _**Issues are ideal when you see something which can be improved but there isn't an obvious fix.**_

## Pull Requests

A GitHub **Pull Request** ("PR") is a request for the site maintainers to _pull in_ changes that have been authored by other users.

> _**PRs are ideal when you already know how to improve the site and want to propose a set of specific changes.**_

# [Docs](./README.md) > Contributing to DataOps Docs
There are two main options for contributing to this repo: issues and pull requests.
## Issues
A GitHub **Issue** is a ticket you create that logs a specific problem, a bug, a feature request, or an inquiry. This issue will be logged centrally and responded to by the site maintainers.
> _**Issues are ideal when you see something which can be improved but there isn't an obvious fix.**_
## Pull Requests
A GitHub **Pull Request** ("PR") is a request for the site maintainers to _pull in_ changes that have been authored by other users.
> _**PRs are ideal when you already know how to improve the site and want to propose a set of specific changes.**_
42 changes: 21 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
MIT License

Copyright (c) 2019 slalom-ggp

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
MIT License
Copyright (c) 2019 slalom-ggp
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
56 changes: 28 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# [Slalom GGP - DataOps Docs](https://docs.dataops.tk)

## Welcome to the `dataops docs` site!

The tools and documentation provided here are designed to accelerate data and analytics projects for the [Slalom Team](https://www.slalom.com/who-we-are) and our clients.

## Guides and Documentation

* **Developer Quickstart Guides** - Quickly get started with DevOps tools and best practices for building modern data solutions:
* [Windows Quickstart](windows_development.md)
* [Mac Quickstart](mac_development.md) ***(New!)***
* [Deploying Tableau Server on AWS](deploying_tableau_server_on_aws.md) - Walkthough of an IAC ("Infrastructure as Code") approach to Tableau Server deployment.
* [Infrastructure Catalog Guide](infra_catalog.md) - Overview of how to get started with the D&A Infrastructure Catalog.
* [Integration Guides](integrations/README.md) - Quickly get started integrating a new data source:
* [Workday](integrations/workday.md)
* [Power BI Themes](powerbi_themes.md) - Guide to formatting Power BI reports using themes.
* [SQL 101](sql101.md) - Quick SQL intro for data and analytics.

## Labs

See the [Labs Page](./labs) for all of the **Slalom DataOps Labs**.

## Other Importand Links

* [dataops-tools](https://github.com/slalom-ggp/dataops-tools) - The primary DataOps git repo for tools mentioned here in these docs.
* [dataops-docs](https://github.com/slalom-ggp/dataops-docs) - Link to this documentation repo. _(Submit documentation bugs and enhancement request here!)_
* [dataops-infra](https://github.com/slalom-ggp/dataops-docs) - Link to the Infrastructure Catalog repo.
* [docs.dataops.tk/backlog](https://docs.dataops.tk/backlog) - DataOps backlog and current development status.
# [Slalom GGP - DataOps Docs](https://docs.dataops.tk)
## Welcome to the `dataops docs` site!
The tools and documentation provided here are designed to accelerate data and analytics projects for the [Slalom Team](https://www.slalom.com/who-we-are) and our clients.
## Guides and Documentation
* **Developer Quickstart Guides** - Quickly get started with DevOps tools and best practices for building modern data solutions:
* [Windows Quickstart](windows_development.md)
* [Mac Quickstart](mac_development.md) ***(New!)***
* [Deploying Tableau Server on AWS](deploying_tableau_server_on_aws.md) - Walkthough of an IAC ("Infrastructure as Code") approach to Tableau Server deployment.
* [Infrastructure Catalog Guide](infra_catalog.md) - Overview of how to get started with the D&A Infrastructure Catalog.
* [Integration Guides](integrations/README.md) - Quickly get started integrating a new data source:
* [Workday](integrations/workday.md)
* [Power BI Themes](powerbi_themes.md) - Guide to formatting Power BI reports using themes.
* [SQL 101](sql101.md) - Quick SQL intro for data and analytics.
## Labs
See the [Labs Page](./labs) for all of the **Slalom DataOps Labs**.
## Other Importand Links
* [dataops-tools](https://github.com/slalom-ggp/dataops-tools) - The primary DataOps git repo for tools mentioned here in these docs.
* [dataops-docs](https://github.com/slalom-ggp/dataops-docs) - Link to this documentation repo. _(Submit documentation bugs and enhancement request here!)_
* [dataops-infra](https://github.com/slalom-ggp/dataops-docs) - Link to the Infrastructure Catalog repo.
* [docs.dataops.tk/backlog](https://docs.dataops.tk/backlog) - DataOps backlog and current development status.
26 changes: 13 additions & 13 deletions backlog.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url=https://github.com/orgs/slalom-ggp/projects/1" />
<link rel="canonical" href="https://github.com/orgs/slalom-ggp/projects/1" />
</head>
<body>
<h1>
This page will redirect to <a href="https://github.com/orgs/slalom-ggp/projects/1">https://github.com/orgs/slalom-ggp/projects/1</a>
</h1>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url=https://github.com/orgs/slalom-ggp/projects/1" />
<link rel="canonical" href="https://github.com/orgs/slalom-ggp/projects/1" />
</head>
<body>
<h1>
This page will redirect to <a href="https://github.com/orgs/slalom-ggp/projects/1">https://github.com/orgs/slalom-ggp/projects/1</a>
</h1>
</body>
</html>
26 changes: 13 additions & 13 deletions brew.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url=https://docs.dataops.tk/mac_development" />
<link rel="canonical" href="https://docs.dataops.tk/mac_development" />
</head>
<body>
<h1>
The page been moved to <a href="https://docs.dataops.tk/mac_development">https://docs.dataops.tk/mac_development</a>
</h1>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url=https://docs.dataops.tk/mac_development" />
<link rel="canonical" href="https://docs.dataops.tk/mac_development" />
</head>
<body>
<h1>
The page been moved to <a href="https://docs.dataops.tk/mac_development">https://docs.dataops.tk/mac_development</a>
</h1>
</body>
</html>
6 changes: 3 additions & 3 deletions brew_install.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
#!/bin/sh
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
26 changes: 13 additions & 13 deletions choco.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url=https://docs.dataops.tk/windows_development" />
<link rel="canonical" href="https://docs.dataops.tk/windows_development" />
</head>
<body>
<h1>
The page been moved to <a href="https://docs.dataops.tk/windows_development">https://docs.dataops.tk/windows_development</a>
</h1>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url=https://docs.dataops.tk/windows_development" />
<link rel="canonical" href="https://docs.dataops.tk/windows_development" />
</head>
<body>
<h1>
The page been moved to <a href="https://docs.dataops.tk/windows_development">https://docs.dataops.tk/windows_development</a>
</h1>
</body>
</html>
Loading