Skip to content

Commit

Permalink
Merge pull request #294 from ktaranov/master
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
Chrissy LeMaire authored Nov 16, 2016
2 parents c1c1c4f + 41df8af commit a98670c
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 9 deletions.
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
**Do you want to request a *feature* or report a *bug*?**

**What is the current behavior?**

**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.**

**What is the expected behavior?**

**Which versions of Powershell and which OS are affected by this issue? Did this work in previous versions of our scripts?**
16 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Fixes # .

Changes proposed in this pull request:
-
-
-

How to test this code:
-
-
-

Has been tested on (remove any that don't apply):
- Powershell 3 and above
- Windows 7 and above
- SQL Server 2008 and above
34 changes: 25 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# dbatools
[![licence badge]][licence]
[![stars badge]][stars]
[![forks badge]][forks]
[![issues badge]][issues]

[licence badge]:https://img.shields.io/badge/License-GPL%20v3-blue.svg
[stars badge]:https://img.shields.io/github/stars/sqlcollaborative/dbatools.svg
[forks badge]:https://img.shields.io/github/forks/sqlcollaborative/dbatools.svg
[issues badge]:https://img.shields.io/github/issues/sqlcollaborative/dbatools.svg

[licence]:https://github.com/sqlcollaborative/dbatools/blob/master/LICENSE.txt
[stars]:https://github.com/sqlcollaborative/dbatools/stargazers
[forks]:https://github.com/sqlcollaborative/dbatools/network
[issues]:https://github.com/sqlcollaborative/dbatools/issues

This module is a SQL Server DBA's best friend.

The dbatools project initially started out as Start-SqlMigration.ps1, but has now grown into a collection of various commands that help automate DBA tasks and encourage best practices.
Expand All @@ -11,16 +26,17 @@ Got ideas for new commands? Please join [Trello board](https://dbatools.io/trell

There's also around a hundred of us on the [SQL Server Community Slack](https://sqlcommunity.slack.com) in the #dbatools channel. Need an invite? Check out the [self-invite page](https://dbatools.io/slack/). Drop by if you'd like to chat about dbatools or even [join the team](https://dbatools.io/team)!

Installer
--------------
## Installer
This module is now in the PowerShell Gallery. Run the following from an administrative prompt to install:
```powershell
Install-Module dbatools
```

Install-Module dbatools

Or if you don't have a version of PowerShell that supports the Gallery or if you don't have, you can install it manually.
Or if you don't have a version of PowerShell that supports the Gallery or if you don't have, you can install it manually:
```powershell
Invoke-Expression (Invoke-WebRequest https://git.io/vn1hQ)
```

Invoke-Expression (Invoke-WebRequest https://git.io/vn1hQ)

dbatools.io is awesome
--------------
This module has been documented in its entirety pretty much, using markdown, at [dbatools.io](https://dbatools.io). Please go visit there, it's pretty. To skip right to the documentation, [visit the functions page](https://dbatools.io/functions/) or you can start with the [getting started](https://dbatools.io/getting-started/) page.
## dbatools.io is awesome
This module has been documented in its entirety pretty much, using markdown, at [dbatools.io](https://dbatools.io). Please go visit there, it's pretty. To skip right to the documentation, [visit the functions page](https://dbatools.io/functions/) or you can start with the [getting started](https://dbatools.io/getting-started/) page.

0 comments on commit a98670c

Please sign in to comment.