Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/patevs/powershell-template
A Basic PowerShell repository and script template.
https://github.com/patevs/powershell-template
powershell template
Last synced: 3 months ago
JSON representation
A Basic PowerShell repository and script template.
- Host: GitHub
- URL: https://github.com/patevs/powershell-template
- Owner: patevs
- License: mit
- Created: 2020-06-07T02:19:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-04T01:26:10.000Z (almost 2 years ago)
- Last Synced: 2024-05-18T05:36:09.768Z (6 months ago)
- Topics: powershell, template
- Language: PowerShell
- Homepage:
- Size: 378 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - patevs/powershell-template - A Basic PowerShell repository and script template. (PowerShell)
README
# PowerShell Template
> A repository template for `PowerShell` script projects.
---
## Project Structure
```md
.
├── .husky # Husky configuration
├── .commitlintrc # Commitlint configuration
├── .editorconfig # Editor configuration
├── .gitignore # Git ignore rules
├── .np-config.json # NPM publish (np) configuration
├── LICENSE # Project LICENSE
├── package.json # NPM package configuration
├── README.md # Project README
└── template.ps1 # PowerShell template script
```---