Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

56,806

Downloads of v 1.76.1:

200

Last Update:

23 Jul 2020

Package Maintainer(s):

Software Author(s):

  • Serverless Inc.

Tags:

serverless lambda aws amazon azure iot serverless.com

Serverless

This is not the latest version of Serverless available.

  • 1
  • 2
  • 3

1.76.1 | Updated: 23 Jul 2020

Downloads:

56,806

Downloads of v 1.76.1:

200

Maintainer(s):

Software Author(s):

  • Serverless Inc.

Serverless 1.76.1

This is not the latest version of Serverless available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Serverless, run the following command from the command line or from PowerShell:

>

To upgrade Serverless, run the following command from the command line or from PowerShell:

>

To uninstall Serverless, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade serverless -y --source="'INTERNAL REPO URL'" --version="'1.76.1'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade serverless -y --source="'INTERNAL REPO URL'" --version="'1.76.1'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install serverless
  win_chocolatey:
    name: serverless
    version: '1.76.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'serverless' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.76.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller serverless
{
    Name     = "serverless"
    Version  = "1.76.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'serverless':
  ensure   => '1.76.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 23 Jul 2020.

Description

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$fileLocation = Join-Path $toolsDir 'serverless.exe'

Install-BinFile -Name serverless -Path $fileLocation
Install-BinFile -Name sls -Path $fileLocation

& 'serverless' 'binary-postinstall'
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

Uninstall-BinFile -Name serverless
Uninstall-BinFile -Name sls
tools\LICENSE.txt
From: https://github.com/serverless/serverless/blob/master/LICENSE.txt

LICENSE

Copyright (c) 2019 Serverless, Inc. http://www.serverless.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

tools\serverless.exe
md5: 487E74DFED08BDEB54B323816134ACB5 | sha1: DA370AE363FD1E419C46769D46FE08139916019A | sha256: A660E70AA5E64CFBD57B5C9B0B45C8492A7D06C88A035203E1BFF622B8B23BDF | sha512: AA58486A881BBAF3B160F3B52378721224B5CEB40D8ADEEF7E5B52B54985C966509AADBAE20723E772EBD327A24D68930515DC60E27B782BF1688D2F638CD40B
tools\VERIFICATION.txt
VERIFICATION

Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the Serverless project itself. Any binaries will be
identical to other package types published by the project, in particular
the ones uploaded as release assets here: https://github.com/serverless/serverless/releases

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Serverless 3.37.0 114 Thursday, November 16, 2023 Approved
Serverless 3.36.0 603 Monday, October 23, 2023 Approved
Serverless 3.35.2 568 Sunday, September 17, 2023 Approved
Serverless 3.35.1 49 Saturday, September 16, 2023 Approved
Serverless 3.32.2 1387 Friday, June 2, 2023 Approved
Serverless 3.32.1 65 Thursday, June 1, 2023 Approved
Serverless 3.32.0 72 Wednesday, May 31, 2023 Approved
Serverless 3.31.0 299 Wednesday, May 17, 2023 Approved
Serverless 3.30.1 526 Thursday, April 6, 2023 Approved
Serverless 3.30.0 44 Wednesday, April 5, 2023 Approved
Serverless 3.29.0 193 Friday, March 24, 2023 Approved
Serverless 3.28.1 331 Thursday, March 2, 2023 Approved
Serverless 3.28.0 99 Tuesday, February 28, 2023 Approved
Serverless 3.27.0 593 Thursday, January 26, 2023 Approved
Serverless 3.25.1 711 Monday, November 28, 2022 Approved
Serverless 3.25.0 198 Monday, November 21, 2022 Approved
Serverless 3.24.1 269 Friday, November 4, 2022 Approved
Serverless 3.24.0 88 Thursday, November 3, 2022 Approved
Serverless 3.23.0 526 Tuesday, October 11, 2022 Approved
Serverless 3.22.0 1300 Tuesday, August 16, 2022 Approved
Serverless 3.21.0 682 Thursday, July 14, 2022 Approved
Serverless 3.20.0 303 Friday, July 8, 2022 Approved
Serverless 3.19.0 2650 Thursday, June 2, 2022 Approved
Serverless 3.18.2 219 Tuesday, May 24, 2022 Approved
Serverless 3.18.0 147 Thursday, May 19, 2022 Approved
Serverless 3.16.0 418 Friday, April 29, 2022 Approved
Serverless 3.15.1 239 Friday, April 22, 2022 Approved
Serverless 3.15.0 158 Wednesday, April 20, 2022 Approved
Serverless 3.14.0 231 Thursday, April 14, 2022 Approved
Serverless 3.12.0 276 Wednesday, April 6, 2022 Approved
Serverless 3.11.0 157 Monday, April 4, 2022 Approved
Serverless 3.10.2 149 Thursday, March 31, 2022 Approved
Serverless 3.10.1 148 Wednesday, March 30, 2022 Approved
Serverless 3.10.0 207 Friday, March 25, 2022 Approved
Serverless 3.9.0 117 Thursday, March 24, 2022 Approved
Serverless 3.8.0 184 Monday, March 21, 2022 Approved
Serverless 3.7.9 151 Friday, March 18, 2022 Approved
Serverless 3.7.8 81 Thursday, March 17, 2022 Approved
Serverless 3.7.7 64 Thursday, March 17, 2022 Approved
Serverless 3.7.6 76 Thursday, March 17, 2022 Approved
Serverless 3.7.4 251 Thursday, March 10, 2022 Approved
Serverless 3.7.3 115 Wednesday, March 9, 2022 Approved
Serverless 3.7.2 139 Tuesday, March 8, 2022 Approved
Serverless 3.7.1 228 Wednesday, March 2, 2022 Approved
Serverless 3.7.0 762 Tuesday, March 1, 2022 Approved
Serverless 3.6.0 70 Tuesday, March 1, 2022 Approved
Serverless 3.5.0 100 Monday, February 28, 2022 Approved
Serverless 3.4.0 114 Friday, February 25, 2022 Approved
Serverless 3.3.0 245 Monday, February 21, 2022 Approved
Serverless 3.2.0 308 Thursday, February 10, 2022 Approved
Serverless 3.1.1 380 Wednesday, February 2, 2022 Approved
Serverless 3.1.0 216 Tuesday, February 1, 2022 Approved
Serverless 3.0.1 206 Friday, January 28, 2022 Approved
Serverless 3.0.0 106 Thursday, January 27, 2022 Approved
Serverless 2.72.3 119 Wednesday, February 23, 2022 Approved
Serverless 2.72.2 96 Monday, January 24, 2022 Approved
Serverless 2.72.0 396 Monday, January 17, 2022 Approved
Serverless 2.71.0 74 Monday, January 10, 2022 Approved
Serverless 2.69.1 687 Wednesday, December 15, 2021 Approved
Serverless 2.69.0 148 Monday, December 13, 2021 Approved
Serverless 2.68.0 337 Thursday, December 2, 2021 Approved
Serverless 2.67.0 226 Friday, November 26, 2021 Approved
Serverless 2.66.2 300 Wednesday, November 17, 2021 Approved
Serverless 2.66.1 305 Wednesday, November 10, 2021 Approved
Serverless 2.66.0 96 Tuesday, November 9, 2021 Approved
Serverless 2.65.0 249 Thursday, November 4, 2021 Approved
Serverless 2.64.1 433 Wednesday, October 20, 2021 Approved
Serverless 2.64.0 92 Wednesday, October 20, 2021 Approved
Serverless 2.63.0 236 Friday, October 15, 2021 Approved
Serverless 2.62.0 271 Friday, October 8, 2021 Approved
Serverless 2.61.0 214 Monday, October 4, 2021 Approved
Serverless 2.60.3 154 Friday, October 1, 2021 Approved
Serverless 2.60.2 109 Thursday, September 30, 2021 Approved
Serverless 2.60.1 111 Wednesday, September 29, 2021 Approved
Serverless 2.60.0 215 Friday, September 24, 2021 Approved
Serverless 2.59.0 358 Tuesday, September 14, 2021 Approved
Serverless 2.58.0 128 Monday, September 13, 2021 Approved
Serverless 2.57.0 398 Tuesday, August 31, 2021 Approved
Serverless 2.56.0 268 Wednesday, August 25, 2021 Approved
Serverless 2.55.0 309 Wednesday, August 18, 2021 Approved
Serverless 2.54.0 273 Thursday, August 12, 2021 Approved
Serverless 2.53.1 235 Friday, August 6, 2021 Approved
Serverless 2.53.0 154 Wednesday, August 4, 2021 Approved
Serverless 2.52.1 419 Thursday, July 22, 2021 Approved
Serverless 2.52.0 279 Thursday, July 15, 2021 Approved
Serverless 2.51.2 284 Thursday, July 8, 2021 Approved
Serverless 2.51.1 91 Thursday, July 8, 2021 Approved
Serverless 2.51.0 192 Tuesday, July 6, 2021 Approved
Serverless 2.50.0 254 Thursday, July 1, 2021 Approved
Serverless 2.49.0 178 Tuesday, June 29, 2021 Approved
Serverless 2.48.1 169 Monday, June 28, 2021 Approved
Serverless 2.47.0 301 Friday, June 18, 2021 Approved
Serverless 2.46.0 414 Friday, June 11, 2021 Approved
Serverless 2.45.2 196 Wednesday, June 9, 2021 Approved
Serverless 2.45.1 159 Tuesday, June 8, 2021 Approved
Serverless 2.45.0 101 Tuesday, June 8, 2021 Approved
Serverless 2.44.0 299 Wednesday, June 2, 2021 Approved
Serverless 2.43.1 343 Tuesday, May 25, 2021 Approved
Serverless 2.43.0 255 Thursday, May 20, 2021 Approved
Serverless 2.42.0 158 Wednesday, May 19, 2021 Approved
Serverless 2.41.2 266 Thursday, May 13, 2021 Approved
Serverless 2.41.1 172 Tuesday, May 11, 2021 Approved
Serverless 2.41.0 99 Tuesday, May 11, 2021 Approved
Serverless 2.40.0 207 Thursday, May 6, 2021 Approved
Serverless 2.39.2 165 Tuesday, May 4, 2021 Approved
Serverless 2.39.1 156 Monday, May 3, 2021 Approved
Serverless 2.39.0 154 Friday, April 30, 2021 Approved
Serverless 2.37.1 381 Wednesday, April 21, 2021 Approved
Serverless 2.37.0 159 Tuesday, April 20, 2021 Approved
Serverless 2.36.0 106 Tuesday, April 20, 2021 Approved
Serverless 2.35.0 350 Friday, April 9, 2021 Approved
Serverless 2.34.0 188 Wednesday, April 7, 2021 Approved
Serverless 2.33.1 185 Saturday, April 3, 2021 Approved
Serverless 2.33.0 102 Friday, April 2, 2021 Approved
Serverless 2.32.1 115 Wednesday, March 31, 2021 Approved
Serverless 2.31.0 590 Tuesday, March 23, 2021 Approved
Serverless 2.30.3 398 Wednesday, March 17, 2021 Approved
Serverless 2.30.2 125 Tuesday, March 16, 2021 Approved
Serverless 2.30.1 126 Tuesday, March 16, 2021 Approved
Serverless 2.30.0 119 Tuesday, March 16, 2021 Approved
Serverless 2.29.0 324 Tuesday, March 9, 2021 Approved
Serverless 2.28.7 229 Thursday, March 4, 2021 Approved
Serverless 2.28.6 136 Wednesday, March 3, 2021 Approved
Serverless 2.28.5 99 Wednesday, March 3, 2021 Approved
Serverless 2.28.4 111 Wednesday, March 3, 2021 Approved
Serverless 2.28.3 115 Tuesday, March 2, 2021 Approved
Serverless 2.28.2 90 Tuesday, March 2, 2021 Approved
Serverless 2.28.1 111 Tuesday, March 2, 2021 Approved
Serverless 2.28.0 244 Friday, February 26, 2021 Approved
Serverless 2.27.1 144 Thursday, February 25, 2021 Approved
Serverless 2.27.0 134 Wednesday, February 24, 2021 Approved
Serverless 2.26.0 133 Wednesday, February 24, 2021 Approved
Serverless 2.25.2 250 Thursday, February 18, 2021 Approved
Serverless 2.25.1 168 Tuesday, February 16, 2021 Approved
Serverless 2.25.0 113 Tuesday, February 16, 2021 Approved
Serverless 2.24.0 85 Tuesday, February 16, 2021 Approved
Serverless 2.23.0 302 Monday, February 8, 2021 Approved
Serverless 2.22.0 270 Tuesday, February 2, 2021 Approved
Serverless 2.21.1 308 Tuesday, January 26, 2021 Approved
Serverless 2.21.0 113 Tuesday, January 26, 2021 Approved
Serverless 2.20.1 204 Friday, January 22, 2021 Approved
Serverless 2.20.0 176 Thursday, January 21, 2021 Approved
Serverless 2.19.0 303 Friday, January 15, 2021 Approved
Serverless 2.18.0 340 Thursday, January 7, 2021 Approved
Serverless 2.16.1 367 Tuesday, December 22, 2020 Approved
Serverless 2.16.0 219 Friday, December 18, 2020 Approved
Serverless 2.15.0 438 Friday, December 4, 2020 Approved
Serverless 2.14.0 183 Tuesday, December 1, 2020 Approved
Serverless 2.13.0 240 Thursday, November 26, 2020 Approved
Serverless 2.12.0 274 Friday, November 20, 2020 Approved
Serverless 2.11.1 428 Monday, November 9, 2020 Approved
Serverless 2.11.0 125 Friday, November 6, 2020 Approved
Serverless 2.10.0 362 Tuesday, November 3, 2020 Approved
Serverless 2.9.0 288 Thursday, October 29, 2020 Approved
Serverless 2.8.0 403 Friday, October 16, 2020 Approved
Serverless 2.7.0 291 Tuesday, October 13, 2020 Approved
Serverless 2.6.0 241 Friday, October 9, 2020 Approved
Serverless 2.5.0 192 Wednesday, October 7, 2020 Approved
Serverless 2.4.0 293 Wednesday, September 30, 2020 Approved
Serverless 2.3.0 254 Friday, September 25, 2020 Approved
Serverless 2.2.0 198 Wednesday, September 23, 2020 Approved
Serverless 2.1.1 297 Thursday, September 17, 2020 Approved
Serverless 2.1.0 175 Wednesday, September 16, 2020 Approved
Serverless 2.0.0 314 Thursday, September 10, 2020 Approved
Serverless 1.83.3 82 Tuesday, March 23, 2021 Approved
Serverless 1.83.2 136 Friday, November 6, 2020 Approved
Serverless 1.83.0 165 Thursday, September 10, 2020 Approved
Serverless 1.82.0 294 Friday, September 4, 2020 Approved
Serverless 1.81.1 164 Wednesday, September 2, 2020 Approved
Serverless 1.81.0 156 Wednesday, September 2, 2020 Approved
Serverless 1.80.0 322 Wednesday, August 26, 2020 Approved
Serverless 1.79.0 292 Wednesday, August 19, 2020 Approved
Serverless 1.78.1 417 Tuesday, August 4, 2020 Approved
Serverless 1.78.0 181 Monday, August 3, 2020 Approved
Serverless 1.77.1 305 Tuesday, July 28, 2020 Approved
Serverless 1.77.0 199 Monday, July 27, 2020 Approved
Serverless 1.76.1 200 Thursday, July 23, 2020 Approved
Serverless 1.76.0 117 Thursday, July 23, 2020 Approved
Serverless 1.75.1 308 Thursday, July 16, 2020 Approved
Serverless 1.75.0 168 Wednesday, July 15, 2020 Approved
Serverless 1.74.1 550 Monday, June 29, 2020 Approved
Serverless 1.74.0 190 Friday, June 26, 2020 Approved
Serverless 1.73.1 384 Tuesday, June 16, 2020 Approved
Serverless 1.73.0 152 Tuesday, June 16, 2020 Approved
Serverless 1.72.0 610 Tuesday, June 2, 2020 Approved
Serverless 1.71.3 620 Wednesday, May 20, 2020 Approved
Serverless 1.71.2 179 Wednesday, May 20, 2020 Approved
Serverless 1.71.1 371 Friday, May 15, 2020 Approved
Serverless 1.70.1 298 Monday, May 11, 2020 Approved
Serverless 1.70.0 238 Thursday, May 7, 2020 Approved
Serverless 1.69.0 355 Wednesday, April 29, 2020 Approved
Serverless 1.68.0 349 Wednesday, April 22, 2020 Approved
Serverless 1.67.3 520 Wednesday, April 8, 2020 Approved
Serverless 1.67.2 167 Tuesday, April 7, 2020 Approved
Serverless 1.67.1 241 Tuesday, April 7, 2020 Approved
Serverless 1.67.0 543 Thursday, March 19, 2020 Approved
Serverless 1.66.0 347 Monday, March 9, 2020 Approved
Serverless 1.65.0 306 Friday, February 28, 2020 Approved
Serverless 1.64.1 175 Wednesday, February 26, 2020 Approved
Serverless 1.64.0 246 Wednesday, February 19, 2020 Approved
Serverless 1.63.0 412 Wednesday, February 5, 2020 Approved
Serverless 1.62.0 221 Wednesday, January 29, 2020 Approved
Serverless 1.61.3 248 Tuesday, January 21, 2020 Approved
Serverless 1.61.2 205 Thursday, January 16, 2020 Approved
Serverless 1.61.1 188 Tuesday, January 14, 2020 Approved
Serverless 1.61.0 139 Monday, January 13, 2020 Approved
Serverless 1.60.5 159 Thursday, January 9, 2020 Approved
Serverless 1.59.3 150 Tuesday, January 7, 2020 Approved

This package has no dependencies.

Discussion for the Serverless Package

Ground Rules:

  • This discussion is only about Serverless and the Serverless package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Serverless, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus