Skip to content

Commit

Permalink
Add quickstart to README
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcker committed Sep 9, 2020
1 parent 6dff4a1 commit 3f4e23c
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# ChocolateyPackages
# ChocolateyPackages #
Packages for the Chocolatey package manager.

## Quickstart ##

```powershell
# ADMINISTRATOR PowerShell
$PACKAGE_NAME=""
$API_KEY=""
cd "${PACKAGE_NAME}"
choco pack
choco install "${PACKAGE_NAME}" --source . --x86
choco uninstall "${PACKAGE_NAME}"
choco install "${PACKAGE_NAME}" --source .
# OR
# choco upgrade "${PACKAGE_NAME}" --source .
choco uninstall "${PACKAGE_NAME}"
choco apikey -k "${API_KEY}" -source https://push.chocolatey.org/
choco push -source https://push.chocolatey.org/
```

More: https://chocolatey.org/docs/CreatePackagesQuickStart

0 comments on commit 3f4e23c

Please sign in to comment.