Skip to content

Commit 9b15835

Browse files
committed
fixing links sqlcollaborative -> dataplat
1 parent 97793f2 commit 9b15835

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# DBOps
66

7-
![dbops](https://sqlcollaborative.github.io/dbops/img/dbops.jpg)
7+
![dbops](docs/img/dbops.jpg)
88

99
DBOps is a Powershell module that provides Continuous Integration/Continuous Deployment capabilities for SQL database deployments. In addition to easy-to-use deployment functions, it provides tracking functionality, ensuring that each script is deployed only once and in due order. It will also grant you with ability to organize scripts into builds and deploy them in a repeatable manner on top of any previously deployed version.
1010

@@ -17,6 +17,7 @@ Currently supported RDBMS:
1717
* MySQL
1818

1919
## Features
20+
2021
The most notable features of the module:
2122

2223
* Reliably deploy your scripts in a consistent and repeatable manner
@@ -33,16 +34,20 @@ The most notable features of the module:
3334
* Powershell 5.0 or higher
3435

3536
## Installation
37+
3638
### Using git
39+
3740
```powershell
38-
git clone https://github.com/sqlcollaborative/dbops.git dbops
41+
git clone https://github.com/dataplat/dbops.git dbops
3942
Import-Module .\dbops
4043
```
44+
4145
Make sure to have the following modules installed as well:
4246
- [PSFramework](https://github.com/PowershellFrameworkCollective/psframework)
4347
- [ZipHelper](https://www.powershellgallery.com/packages/ziphelper) - only if you intend to run module tests
4448

4549
### Using PSGallery (Powershell 5+)
50+
4651
```powershell
4752
Install-Module dbops
4853
```
@@ -56,6 +61,7 @@ Install-Module dbops
5661
* Versioned package deployment (e.g. Octopus Deployment)
5762

5863
## Examples
64+
5965
### Simple deployments and ad-hoc queries
6066

6167
Perform plain-text script deployments using a single command:
@@ -72,9 +78,10 @@ Install-DBOScript -ScriptPath C:\temp\myscripts -SqlInstance server1 -Database M
7278
# Execute a list of files as an Ad-hoc query
7379
Get-ChildItem C:\temp\myscripts | Invoke-DBOQuery -SqlInstance server1 -Database MyDB
7480
```
81+
7582
### Package management
7683

77-
<img src="https://sqlcollaborative.github.io/dbops/img/dbops-package.jpg" alt="dbops packages" width="800"/>
84+
<img src="docs/img/dbops-package.jpg" alt="dbops packages" width="800"/>
7885

7986
Each package consists of multiple builds and can be easily deployed to the database, ensuring that each build is deployed in proper order and only once.
8087

@@ -99,6 +106,7 @@ Get-ChildItem .\myscripts | Add-DBOBuild Deploy.zip -Type New,Modified -Build 3.
99106
Expand-Archive Deploy.zip '.\MyTempFolder'
100107
.\MyTempFolder\Deploy.ps1 -SqlInstance server1 -Database MyDB
101108
```
109+
102110
### Configurations and defaults
103111

104112
There are multiple configuration options available, including:
@@ -140,7 +148,7 @@ Reset-DBODefaultSetting -Name SchemaVersionTable
140148

141149
dbops CI/CD flow assumes that each package version is built only once and deployed onto every single environment. The successfull builds should make their way as artifacts into the artifact storage, from which they would be pulled again to add new builds into the package during the next iteration.
142150

143-
<img src="https://sqlcollaborative.github.io/dbops/img/ci-cd-flow.jpg" alt="CI-CD flow" width="800"/>
151+
<img src="docs/img/ci-cd-flow.jpg" alt="CI-CD flow" width="800"/>
144152

145153
CI/CD capabilities of the module enable user to integrate SQL scripts into a package file using a single command and to store packages in a versioned package repository.
146154

@@ -172,5 +180,7 @@ Get-DBOPackageArtifact -Path myPackage.zip -Repository \\data\repo | Install-DBO
172180
* Optional rollback scripts
173181

174182
## Contacts
175-
Submitting issues - [GitHub issues](https://github.com/sqlcollaborative/dbops/issues)
176-
SQLCommunity Slack: https://sqlcommunity.slack.com #devops or @nvarscar
183+
184+
Submitting issues - [GitHub issues](https://github.com/dataplat/dbops/issues)
185+
186+
SQLCommunity Slack: https://sqlcommunity.slack.com #dbops or @nvarscar

0 commit comments

Comments
 (0)