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:

73,186

Downloads of v 3.38.0:

4,597

Last Update:

22 Nov 2023

Package Maintainer(s):

Software Author(s):

  • Serverless Inc.

Tags:

Serverless

  • 1
  • 2
  • 3

3.38.0 | Updated: 22 Nov 2023

Downloads:

73,186

Downloads of v 3.38.0:

4,597

Maintainer(s):

Software Author(s):

  • Serverless Inc.

Serverless 3.38.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Serverless Inc. The inclusion of Serverless Inc. trademark(s), if any, upon this webpage is solely to identify Serverless Inc. goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

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'" [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'" 
$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: '3.38.0'
    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  '3.38.0'
end

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


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

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


package { 'serverless':
  ensure   => '3.38.0',
  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 22 Nov 2023.

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/main/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: 888B0887AD9711AB95194E0EB1C30A02 | sha1: 5096C65288D558F24675438C8699BA637D9AD249 | sha256: 4BE9B3579B44539BD2FD53118F1B4E36D74CAF7A16F4C1B20773811E8336BFFA | sha512: DDF306074204B0B582A7298C82DC2B276CED04245AB3BE2004B2DC4861B49405796B1B38890F2EA4D0E054F883AE027EA8875A07845F27C81AD60F61A7D658AA
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 170 Thursday, November 16, 2023 Approved
Serverless 3.36.0 643 Monday, October 23, 2023 Approved
Serverless 3.35.2 612 Sunday, September 17, 2023 Approved
Serverless 3.35.1 81 Saturday, September 16, 2023 Approved
Serverless 3.32.2 1408 Friday, June 2, 2023 Approved
Serverless 3.32.1 100 Thursday, June 1, 2023 Approved
Serverless 3.32.0 112 Wednesday, May 31, 2023 Approved
Serverless 3.31.0 332 Wednesday, May 17, 2023 Approved
Serverless 3.30.1 558 Thursday, April 6, 2023 Approved
Serverless 3.30.0 86 Wednesday, April 5, 2023 Approved
Serverless 3.29.0 234 Friday, March 24, 2023 Approved
Serverless 3.28.1 360 Thursday, March 2, 2023 Approved
Serverless 3.28.0 141 Tuesday, February 28, 2023 Approved
Serverless 3.27.0 628 Thursday, January 26, 2023 Approved
Serverless 3.25.1 745 Monday, November 28, 2022 Approved
Serverless 3.25.0 234 Monday, November 21, 2022 Approved
Serverless 3.24.1 306 Friday, November 4, 2022 Approved
Serverless 3.24.0 124 Thursday, November 3, 2022 Approved
Serverless 3.23.0 569 Tuesday, October 11, 2022 Approved
Serverless 3.22.0 1341 Tuesday, August 16, 2022 Approved
Serverless 3.21.0 718 Thursday, July 14, 2022 Approved
Serverless 3.20.0 336 Friday, July 8, 2022 Approved
Serverless 3.19.0 3128 Thursday, June 2, 2022 Approved
Serverless 3.18.2 251 Tuesday, May 24, 2022 Approved
Serverless 3.18.0 186 Thursday, May 19, 2022 Approved
Serverless 3.16.0 464 Friday, April 29, 2022 Approved
Serverless 3.15.1 264 Friday, April 22, 2022 Approved
Serverless 3.15.0 185 Wednesday, April 20, 2022 Approved
Serverless 3.14.0 275 Thursday, April 14, 2022 Approved
Serverless 3.12.0 324 Wednesday, April 6, 2022 Approved
Serverless 3.11.0 194 Monday, April 4, 2022 Approved
Serverless 3.10.2 186 Thursday, March 31, 2022 Approved
Serverless 3.10.1 187 Wednesday, March 30, 2022 Approved
Serverless 3.10.0 252 Friday, March 25, 2022 Approved
Serverless 3.9.0 156 Thursday, March 24, 2022 Approved
Serverless 3.8.0 217 Monday, March 21, 2022 Approved
Serverless 3.7.9 196 Friday, March 18, 2022 Approved
Serverless 3.7.8 122 Thursday, March 17, 2022 Approved
Serverless 3.7.7 108 Thursday, March 17, 2022 Approved
Serverless 3.7.6 115 Thursday, March 17, 2022 Approved
Serverless 3.7.4 289 Thursday, March 10, 2022 Approved
Serverless 3.7.3 157 Wednesday, March 9, 2022 Approved
Serverless 3.7.2 178 Tuesday, March 8, 2022 Approved
Serverless 3.7.1 265 Wednesday, March 2, 2022 Approved
Serverless 3.7.0 823 Tuesday, March 1, 2022 Approved
Serverless 3.6.0 107 Tuesday, March 1, 2022 Approved
Serverless 3.5.0 137 Monday, February 28, 2022 Approved
Serverless 3.4.0 146 Friday, February 25, 2022 Approved
Serverless 3.3.0 293 Monday, February 21, 2022 Approved
Serverless 3.2.0 346 Thursday, February 10, 2022 Approved
Serverless 3.1.1 412 Wednesday, February 2, 2022 Approved
Serverless 3.1.0 294 Tuesday, February 1, 2022 Approved
Serverless 3.0.1 249 Friday, January 28, 2022 Approved
Serverless 3.0.0 138 Thursday, January 27, 2022 Approved
Serverless 2.72.3 200 Wednesday, February 23, 2022 Approved
Serverless 2.72.2 157 Monday, January 24, 2022 Approved
Serverless 2.72.0 494 Monday, January 17, 2022 Approved
Serverless 2.71.0 142 Monday, January 10, 2022 Approved
Serverless 2.69.1 760 Wednesday, December 15, 2021 Approved
Serverless 2.69.0 244 Monday, December 13, 2021 Approved
Serverless 2.68.0 407 Thursday, December 2, 2021 Approved
Serverless 2.67.0 311 Friday, November 26, 2021 Approved
Serverless 2.66.2 384 Wednesday, November 17, 2021 Approved
Serverless 2.66.1 373 Wednesday, November 10, 2021 Approved
Serverless 2.66.0 148 Tuesday, November 9, 2021 Approved
Serverless 2.65.0 338 Thursday, November 4, 2021 Approved
Serverless 2.64.1 508 Wednesday, October 20, 2021 Approved
Serverless 2.64.0 170 Wednesday, October 20, 2021 Approved
Serverless 2.63.0 309 Friday, October 15, 2021 Approved
Serverless 2.62.0 341 Friday, October 8, 2021 Approved
Serverless 2.61.0 300 Monday, October 4, 2021 Approved
Serverless 2.60.3 216 Friday, October 1, 2021 Approved
Serverless 2.60.2 165 Thursday, September 30, 2021 Approved
Serverless 2.60.1 186 Wednesday, September 29, 2021 Approved
Serverless 2.60.0 288 Friday, September 24, 2021 Approved
Serverless 2.59.0 422 Tuesday, September 14, 2021 Approved
Serverless 2.58.0 183 Monday, September 13, 2021 Approved
Serverless 2.57.0 457 Tuesday, August 31, 2021 Approved
Serverless 2.56.0 337 Wednesday, August 25, 2021 Approved
Serverless 2.55.0 380 Wednesday, August 18, 2021 Approved
Serverless 2.54.0 317 Thursday, August 12, 2021 Approved
Serverless 2.53.1 321 Friday, August 6, 2021 Approved
Serverless 2.53.0 218 Wednesday, August 4, 2021 Approved
Serverless 2.52.1 474 Thursday, July 22, 2021 Approved
Serverless 2.52.0 335 Thursday, July 15, 2021 Approved
Serverless 2.51.2 336 Thursday, July 8, 2021 Approved
Serverless 2.51.1 184 Thursday, July 8, 2021 Approved
Serverless 2.51.0 275 Tuesday, July 6, 2021 Approved
Serverless 2.50.0 336 Thursday, July 1, 2021 Approved
Serverless 2.49.0 242 Tuesday, June 29, 2021 Approved
Serverless 2.48.1 252 Monday, June 28, 2021 Approved
Serverless 2.47.0 354 Friday, June 18, 2021 Approved
Serverless 2.46.0 481 Friday, June 11, 2021 Approved
Serverless 2.45.2 271 Wednesday, June 9, 2021 Approved
Serverless 2.45.1 233 Tuesday, June 8, 2021 Approved
Serverless 2.45.0 139 Tuesday, June 8, 2021 Approved
Serverless 2.44.0 363 Wednesday, June 2, 2021 Approved
Serverless 2.43.1 427 Tuesday, May 25, 2021 Approved
Serverless 2.43.0 333 Thursday, May 20, 2021 Approved
Serverless 2.42.0 207 Wednesday, May 19, 2021 Approved
Serverless 2.41.2 308 Thursday, May 13, 2021 Approved
Serverless 2.41.1 252 Tuesday, May 11, 2021 Approved
Serverless 2.41.0 150 Tuesday, May 11, 2021 Approved
Serverless 2.40.0 270 Thursday, May 6, 2021 Approved
Serverless 2.39.2 225 Tuesday, May 4, 2021 Approved
Serverless 2.39.1 199 Monday, May 3, 2021 Approved
Serverless 2.39.0 228 Friday, April 30, 2021 Approved
Serverless 2.37.1 460 Wednesday, April 21, 2021 Approved
Serverless 2.37.0 203 Tuesday, April 20, 2021 Approved
Serverless 2.36.0 181 Tuesday, April 20, 2021 Approved
Serverless 2.35.0 422 Friday, April 9, 2021 Approved
Serverless 2.34.0 258 Wednesday, April 7, 2021 Approved
Serverless 2.33.1 259 Saturday, April 3, 2021 Approved
Serverless 2.33.0 188 Friday, April 2, 2021 Approved
Serverless 2.32.1 190 Wednesday, March 31, 2021 Approved
Serverless 2.31.0 655 Tuesday, March 23, 2021 Approved
Serverless 2.30.3 464 Wednesday, March 17, 2021 Approved
Serverless 2.30.2 178 Tuesday, March 16, 2021 Approved
Serverless 2.30.1 214 Tuesday, March 16, 2021 Approved
Serverless 2.30.0 204 Tuesday, March 16, 2021 Approved
Serverless 2.29.0 398 Tuesday, March 9, 2021 Approved
Serverless 2.28.7 280 Thursday, March 4, 2021 Approved
Serverless 2.28.6 203 Wednesday, March 3, 2021 Approved
Serverless 2.28.5 138 Wednesday, March 3, 2021 Approved
Serverless 2.28.4 163 Wednesday, March 3, 2021 Approved
Serverless 2.28.3 160 Tuesday, March 2, 2021 Approved
Serverless 2.28.2 143 Tuesday, March 2, 2021 Approved
Serverless 2.28.1 177 Tuesday, March 2, 2021 Approved
Serverless 2.28.0 322 Friday, February 26, 2021 Approved
Serverless 2.27.1 231 Thursday, February 25, 2021 Approved
Serverless 2.27.0 214 Wednesday, February 24, 2021 Approved
Serverless 2.26.0 195 Wednesday, February 24, 2021 Approved
Serverless 2.25.2 302 Thursday, February 18, 2021 Approved
Serverless 2.25.1 224 Tuesday, February 16, 2021 Approved
Serverless 2.25.0 177 Tuesday, February 16, 2021 Approved
Serverless 2.24.0 178 Tuesday, February 16, 2021 Approved
Serverless 2.23.0 380 Monday, February 8, 2021 Approved
Serverless 2.22.0 357 Tuesday, February 2, 2021 Approved
Serverless 2.21.1 370 Tuesday, January 26, 2021 Approved
Serverless 2.21.0 164 Tuesday, January 26, 2021 Approved
Serverless 2.20.1 285 Friday, January 22, 2021 Approved
Serverless 2.20.0 234 Thursday, January 21, 2021 Approved
Serverless 2.19.0 375 Friday, January 15, 2021 Approved
Serverless 2.18.0 428 Thursday, January 7, 2021 Approved
Serverless 2.16.1 430 Tuesday, December 22, 2020 Approved
Serverless 2.16.0 275 Friday, December 18, 2020 Approved
Serverless 2.15.0 523 Friday, December 4, 2020 Approved
Serverless 2.14.0 280 Tuesday, December 1, 2020 Approved
Serverless 2.13.0 316 Thursday, November 26, 2020 Approved
Serverless 2.12.0 354 Friday, November 20, 2020 Approved
Serverless 2.11.1 506 Monday, November 9, 2020 Approved
Serverless 2.11.0 198 Friday, November 6, 2020 Approved
Serverless 2.10.0 443 Tuesday, November 3, 2020 Approved
Serverless 2.9.0 346 Thursday, October 29, 2020 Approved
Serverless 2.8.0 463 Friday, October 16, 2020 Approved
Serverless 2.7.0 360 Tuesday, October 13, 2020 Approved
Serverless 2.6.0 303 Friday, October 9, 2020 Approved
Serverless 2.5.0 260 Wednesday, October 7, 2020 Approved
Serverless 2.4.0 344 Wednesday, September 30, 2020 Approved
Serverless 2.3.0 353 Friday, September 25, 2020 Approved
Serverless 2.2.0 269 Wednesday, September 23, 2020 Approved
Serverless 2.1.1 382 Thursday, September 17, 2020 Approved
Serverless 2.1.0 254 Wednesday, September 16, 2020 Approved
Serverless 2.0.0 375 Thursday, September 10, 2020 Approved
Serverless 1.83.3 136 Tuesday, March 23, 2021 Approved
Serverless 1.83.2 213 Friday, November 6, 2020 Approved
Serverless 1.83.0 257 Thursday, September 10, 2020 Approved
Serverless 1.82.0 355 Friday, September 4, 2020 Approved
Serverless 1.81.1 243 Wednesday, September 2, 2020 Approved
Serverless 1.81.0 256 Wednesday, September 2, 2020 Approved
Serverless 1.80.0 409 Wednesday, August 26, 2020 Approved
Serverless 1.79.0 358 Wednesday, August 19, 2020 Approved
Serverless 1.78.1 490 Tuesday, August 4, 2020 Approved
Serverless 1.78.0 234 Monday, August 3, 2020 Approved
Serverless 1.77.1 379 Tuesday, July 28, 2020 Approved
Serverless 1.77.0 285 Monday, July 27, 2020 Approved
Serverless 1.76.1 263 Thursday, July 23, 2020 Approved
Serverless 1.76.0 207 Thursday, July 23, 2020 Approved
Serverless 1.75.1 361 Thursday, July 16, 2020 Approved
Serverless 1.75.0 246 Wednesday, July 15, 2020 Approved
Serverless 1.74.1 598 Monday, June 29, 2020 Approved
Serverless 1.74.0 242 Friday, June 26, 2020 Approved
Serverless 1.73.1 472 Tuesday, June 16, 2020 Approved
Serverless 1.73.0 223 Tuesday, June 16, 2020 Approved
Serverless 1.72.0 675 Tuesday, June 2, 2020 Approved
Serverless 1.71.3 675 Wednesday, May 20, 2020 Approved
Serverless 1.71.2 258 Wednesday, May 20, 2020 Approved
Serverless 1.71.1 455 Friday, May 15, 2020 Approved
Serverless 1.70.1 391 Monday, May 11, 2020 Approved
Serverless 1.70.0 356 Thursday, May 7, 2020 Approved
Serverless 1.69.0 426 Wednesday, April 29, 2020 Approved
Serverless 1.68.0 405 Wednesday, April 22, 2020 Approved
Serverless 1.67.3 594 Wednesday, April 8, 2020 Approved
Serverless 1.67.2 243 Tuesday, April 7, 2020 Approved
Serverless 1.67.1 315 Tuesday, April 7, 2020 Approved
Serverless 1.67.0 584 Thursday, March 19, 2020 Approved
Serverless 1.66.0 389 Monday, March 9, 2020 Approved
Serverless 1.65.0 354 Friday, February 28, 2020 Approved
Serverless 1.64.1 203 Wednesday, February 26, 2020 Approved
Serverless 1.64.0 287 Wednesday, February 19, 2020 Approved
Serverless 1.63.0 453 Wednesday, February 5, 2020 Approved
Serverless 1.62.0 262 Wednesday, January 29, 2020 Approved
Serverless 1.61.3 285 Tuesday, January 21, 2020 Approved
Serverless 1.61.2 249 Thursday, January 16, 2020 Approved
Serverless 1.61.1 221 Tuesday, January 14, 2020 Approved
Serverless 1.61.0 180 Monday, January 13, 2020 Approved
Serverless 1.60.5 200 Thursday, January 9, 2020 Approved
Serverless 1.59.3 182 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