Skip to content

Commit

Permalink
🩹 [Patch]: Init (#1)
Browse files Browse the repository at this point in the history
## Description

- First test version

## Type of change

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [ ] 📖 [Docs]
- [ ] 🪲 [Fix]
- [x] 🩹 [Patch]
- [ ] ⚠️ [Security fix]
- [ ] 🚀 [Feature]
- [ ] 🌟 [Breaking change]

## Checklist

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
  • Loading branch information
MariusStorhaug authored Mar 16, 2024
1 parent 0d6af7c commit b0998fb
Show file tree
Hide file tree
Showing 39 changed files with 340 additions and 371 deletions.
29 changes: 6 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# PSModuleTemplate

Add a short description about the module and the project.
A PowerShell module that manages a store of secrets and variables.

## Prerequisites

List any prerequisites needed to use the module, such as PowerShell versions, additional modules, or permissions.
This module relies on [Microsoft.PowerShell.SecretManagement] and [Microsoft.PowerShell.SecretStore] by default. You can use other secret vault
providers by installing them and setting them as the provider when calling the function.

## Installation

Provide step-by-step instructions on how to install the module, including any InstallModule commands or manual installation steps.

```powershell
Install-Module -Name YourModuleName
Install-Module -Name Store
Import-Module -Name Store
```

## Usage
Expand All @@ -21,18 +23,8 @@ This section should provide a good overview of the module's capabilities.

### Example 1

Provide examples for typical commands that a user would like to do with the module.

```powershell
Import-Module -Name PSModuleTemplate
```

### Example 2

Provide examples for typical commands that a user would like to do with the module.

```powershell
Import-Module -Name PSModuleTemplate
# This is an example of how to use the module
```

### Find more examples
Expand All @@ -42,11 +34,6 @@ To find more examples of how to use the module, please refer to the [examples](e
Alternatively, you can use the Get-Command -Module 'This module' to find more commands that are available in the module.
To find examples of each of the commands you can use Get-Help -Examples 'CommandName'.

## Documentation

Link to further documentation if available, or describe where in the repository users can find more detailed documentation about
the module's functions and features.

## Contributing

Coder or not, you can contribute to the project! We welcome all contributions.
Expand All @@ -61,7 +48,3 @@ Please see the issues tab on this project and submit a new issue that matches yo

If you do code, we'd love to have your contributions. Please read the [Contribution guidelines](CONTRIBUTING.md) for more information.
You can either help by picking up an existing issue or submit a new one if you have an idea for a new feature or improvement.

## Acknowledgements

Here is a list of people and projects that helped this project in some way.
19 changes: 0 additions & 19 deletions examples/General.ps1

This file was deleted.

8 changes: 0 additions & 8 deletions src/PSModule/PSModule.psd1

This file was deleted.

Binary file removed src/PSModule/assemblies/LsonLib.dll
Binary file not shown.
37 changes: 0 additions & 37 deletions src/PSModule/classes/CultureInfo.Format.ps1xml

This file was deleted.

21 changes: 0 additions & 21 deletions src/PSModule/classes/DirectoryInfo.Types.ps1xml

This file was deleted.

14 changes: 0 additions & 14 deletions src/PSModule/classes/FileInfo.Types.ps1xml

This file was deleted.

9 changes: 0 additions & 9 deletions src/PSModule/classes/Function.ps1

This file was deleted.

65 changes: 0 additions & 65 deletions src/PSModule/classes/Mygciview.Format.ps1xml

This file was deleted.

11 changes: 0 additions & 11 deletions src/PSModule/classes/PSModule.ps1

This file was deleted.

3 changes: 0 additions & 3 deletions src/PSModule/data/Config.psd1

This file was deleted.

3 changes: 0 additions & 3 deletions src/PSModule/data/Settings.psd1

This file was deleted.

3 changes: 0 additions & 3 deletions src/PSModule/finally.ps1

This file was deleted.

3 changes: 0 additions & 3 deletions src/PSModule/header.ps1

This file was deleted.

3 changes: 0 additions & 3 deletions src/PSModule/init/initializer.ps1

This file was deleted.

8 changes: 0 additions & 8 deletions src/PSModule/modules/OtherPSModule.psm1

This file was deleted.

18 changes: 0 additions & 18 deletions src/PSModule/private/Get-InternalPSModule.ps1

This file was deleted.

22 changes: 0 additions & 22 deletions src/PSModule/private/Set-InternalPSModule.ps1

This file was deleted.

18 changes: 0 additions & 18 deletions src/PSModule/public/Get-PSModule.ps1

This file was deleted.

22 changes: 0 additions & 22 deletions src/PSModule/public/New-PSModule.ps1

This file was deleted.

22 changes: 0 additions & 22 deletions src/PSModule/public/Set-PSModule.ps1

This file was deleted.

Loading

0 comments on commit b0998fb

Please sign in to comment.