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:

72,147

Downloads of v 3.38.0:

4,522

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:

72,147

Downloads of v 3.38.0:

4,522

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 169 Thursday, November 16, 2023 Approved
Serverless 3.36.0 639 Monday, October 23, 2023 Approved
Serverless 3.35.2 608 Sunday, September 17, 2023 Approved
Serverless 3.35.1 80 Saturday, September 16, 2023 Approved
Serverless 3.32.2 1406 Friday, June 2, 2023 Approved
Serverless 3.32.1 94 Thursday, June 1, 2023 Approved
Serverless 3.32.0 107 Wednesday, May 31, 2023 Approved
Serverless 3.31.0 330 Wednesday, May 17, 2023 Approved
Serverless 3.30.1 555 Thursday, April 6, 2023 Approved
Serverless 3.30.0 79 Wednesday, April 5, 2023 Approved
Serverless 3.29.0 229 Friday, March 24, 2023 Approved
Serverless 3.28.1 357 Thursday, March 2, 2023 Approved
Serverless 3.28.0 132 Tuesday, February 28, 2023 Approved
Serverless 3.27.0 625 Thursday, January 26, 2023 Approved
Serverless 3.25.1 744 Monday, November 28, 2022 Approved
Serverless 3.25.0 233 Monday, November 21, 2022 Approved
Serverless 3.24.1 304 Friday, November 4, 2022 Approved
Serverless 3.24.0 122 Thursday, November 3, 2022 Approved
Serverless 3.23.0 560 Tuesday, October 11, 2022 Approved
Serverless 3.22.0 1332 Tuesday, August 16, 2022 Approved
Serverless 3.21.0 715 Thursday, July 14, 2022 Approved
Serverless 3.20.0 335 Friday, July 8, 2022 Approved
Serverless 3.19.0 3125 Thursday, June 2, 2022 Approved
Serverless 3.18.2 246 Tuesday, May 24, 2022 Approved
Serverless 3.18.0 182 Thursday, May 19, 2022 Approved
Serverless 3.16.0 459 Friday, April 29, 2022 Approved
Serverless 3.15.1 263 Friday, April 22, 2022 Approved
Serverless 3.15.0 181 Wednesday, April 20, 2022 Approved
Serverless 3.14.0 270 Thursday, April 14, 2022 Approved
Serverless 3.12.0 321 Wednesday, April 6, 2022 Approved
Serverless 3.11.0 191 Monday, April 4, 2022 Approved
Serverless 3.10.2 181 Thursday, March 31, 2022 Approved
Serverless 3.10.1 180 Wednesday, March 30, 2022 Approved
Serverless 3.10.0 247 Friday, March 25, 2022 Approved
Serverless 3.9.0 153 Thursday, March 24, 2022 Approved
Serverless 3.8.0 216 Monday, March 21, 2022 Approved
Serverless 3.7.9 192 Friday, March 18, 2022 Approved
Serverless 3.7.8 116 Thursday, March 17, 2022 Approved
Serverless 3.7.7 103 Thursday, March 17, 2022 Approved
Serverless 3.7.6 110 Thursday, March 17, 2022 Approved
Serverless 3.7.4 280 Thursday, March 10, 2022 Approved
Serverless 3.7.3 155 Wednesday, March 9, 2022 Approved
Serverless 3.7.2 172 Tuesday, March 8, 2022 Approved
Serverless 3.7.1 259 Wednesday, March 2, 2022 Approved
Serverless 3.7.0 818 Tuesday, March 1, 2022 Approved
Serverless 3.6.0 102 Tuesday, March 1, 2022 Approved
Serverless 3.5.0 134 Monday, February 28, 2022 Approved
Serverless 3.4.0 140 Friday, February 25, 2022 Approved
Serverless 3.3.0 288 Monday, February 21, 2022 Approved
Serverless 3.2.0 344 Thursday, February 10, 2022 Approved
Serverless 3.1.1 407 Wednesday, February 2, 2022 Approved
Serverless 3.1.0 288 Tuesday, February 1, 2022 Approved
Serverless 3.0.1 246 Friday, January 28, 2022 Approved
Serverless 3.0.0 135 Thursday, January 27, 2022 Approved
Serverless 2.72.3 198 Wednesday, February 23, 2022 Approved
Serverless 2.72.2 155 Monday, January 24, 2022 Approved
Serverless 2.72.0 490 Monday, January 17, 2022 Approved
Serverless 2.71.0 141 Monday, January 10, 2022 Approved
Serverless 2.69.1 754 Wednesday, December 15, 2021 Approved
Serverless 2.69.0 236 Monday, December 13, 2021 Approved
Serverless 2.68.0 400 Thursday, December 2, 2021 Approved
Serverless 2.67.0 310 Friday, November 26, 2021 Approved
Serverless 2.66.2 381 Wednesday, November 17, 2021 Approved
Serverless 2.66.1 372 Wednesday, November 10, 2021 Approved
Serverless 2.66.0 140 Tuesday, November 9, 2021 Approved
Serverless 2.65.0 333 Thursday, November 4, 2021 Approved
Serverless 2.64.1 501 Wednesday, October 20, 2021 Approved
Serverless 2.64.0 164 Wednesday, October 20, 2021 Approved
Serverless 2.63.0 306 Friday, October 15, 2021 Approved
Serverless 2.62.0 337 Friday, October 8, 2021 Approved
Serverless 2.61.0 298 Monday, October 4, 2021 Approved
Serverless 2.60.3 214 Friday, October 1, 2021 Approved
Serverless 2.60.2 160 Thursday, September 30, 2021 Approved
Serverless 2.60.1 182 Wednesday, September 29, 2021 Approved
Serverless 2.60.0 284 Friday, September 24, 2021 Approved
Serverless 2.59.0 420 Tuesday, September 14, 2021 Approved
Serverless 2.58.0 181 Monday, September 13, 2021 Approved
Serverless 2.57.0 455 Tuesday, August 31, 2021 Approved
Serverless 2.56.0 335 Wednesday, August 25, 2021 Approved
Serverless 2.55.0 375 Wednesday, August 18, 2021 Approved
Serverless 2.54.0 313 Thursday, August 12, 2021 Approved
Serverless 2.53.1 316 Friday, August 6, 2021 Approved
Serverless 2.53.0 213 Wednesday, August 4, 2021 Approved
Serverless 2.52.1 472 Thursday, July 22, 2021 Approved
Serverless 2.52.0 328 Thursday, July 15, 2021 Approved
Serverless 2.51.2 332 Thursday, July 8, 2021 Approved
Serverless 2.51.1 180 Thursday, July 8, 2021 Approved
Serverless 2.51.0 271 Tuesday, July 6, 2021 Approved
Serverless 2.50.0 330 Thursday, July 1, 2021 Approved
Serverless 2.49.0 239 Tuesday, June 29, 2021 Approved
Serverless 2.48.1 248 Monday, June 28, 2021 Approved
Serverless 2.47.0 348 Friday, June 18, 2021 Approved
Serverless 2.46.0 476 Friday, June 11, 2021 Approved
Serverless 2.45.2 267 Wednesday, June 9, 2021 Approved
Serverless 2.45.1 227 Tuesday, June 8, 2021 Approved
Serverless 2.45.0 136 Tuesday, June 8, 2021 Approved
Serverless 2.44.0 357 Wednesday, June 2, 2021 Approved
Serverless 2.43.1 410 Tuesday, May 25, 2021 Approved
Serverless 2.43.0 331 Thursday, May 20, 2021 Approved
Serverless 2.42.0 202 Wednesday, May 19, 2021 Approved
Serverless 2.41.2 305 Thursday, May 13, 2021 Approved
Serverless 2.41.1 249 Tuesday, May 11, 2021 Approved
Serverless 2.41.0 146 Tuesday, May 11, 2021 Approved
Serverless 2.40.0 262 Thursday, May 6, 2021 Approved
Serverless 2.39.2 221 Tuesday, May 4, 2021 Approved
Serverless 2.39.1 192 Monday, May 3, 2021 Approved
Serverless 2.39.0 224 Friday, April 30, 2021 Approved
Serverless 2.37.1 454 Wednesday, April 21, 2021 Approved
Serverless 2.37.0 200 Tuesday, April 20, 2021 Approved
Serverless 2.36.0 178 Tuesday, April 20, 2021 Approved
Serverless 2.35.0 417 Friday, April 9, 2021 Approved
Serverless 2.34.0 254 Wednesday, April 7, 2021 Approved
Serverless 2.33.1 255 Saturday, April 3, 2021 Approved
Serverless 2.33.0 181 Friday, April 2, 2021 Approved
Serverless 2.32.1 188 Wednesday, March 31, 2021 Approved
Serverless 2.31.0 650 Tuesday, March 23, 2021 Approved
Serverless 2.30.3 461 Wednesday, March 17, 2021 Approved
Serverless 2.30.2 173 Tuesday, March 16, 2021 Approved
Serverless 2.30.1 209 Tuesday, March 16, 2021 Approved
Serverless 2.30.0 201 Tuesday, March 16, 2021 Approved
Serverless 2.29.0 395 Tuesday, March 9, 2021 Approved
Serverless 2.28.7 272 Thursday, March 4, 2021 Approved
Serverless 2.28.6 198 Wednesday, March 3, 2021 Approved
Serverless 2.28.5 134 Wednesday, March 3, 2021 Approved
Serverless 2.28.4 159 Wednesday, March 3, 2021 Approved
Serverless 2.28.3 159 Tuesday, March 2, 2021 Approved
Serverless 2.28.2 141 Tuesday, March 2, 2021 Approved
Serverless 2.28.1 172 Tuesday, March 2, 2021 Approved
Serverless 2.28.0 309 Friday, February 26, 2021 Approved
Serverless 2.27.1 226 Thursday, February 25, 2021 Approved
Serverless 2.27.0 211 Wednesday, February 24, 2021 Approved
Serverless 2.26.0 189 Wednesday, February 24, 2021 Approved
Serverless 2.25.2 298 Thursday, February 18, 2021 Approved
Serverless 2.25.1 220 Tuesday, February 16, 2021 Approved
Serverless 2.25.0 173 Tuesday, February 16, 2021 Approved
Serverless 2.24.0 173 Tuesday, February 16, 2021 Approved
Serverless 2.23.0 378 Monday, February 8, 2021 Approved
Serverless 2.22.0 353 Tuesday, February 2, 2021 Approved
Serverless 2.21.1 366 Tuesday, January 26, 2021 Approved
Serverless 2.21.0 162 Tuesday, January 26, 2021 Approved
Serverless 2.20.1 281 Friday, January 22, 2021 Approved
Serverless 2.20.0 225 Thursday, January 21, 2021 Approved
Serverless 2.19.0 372 Friday, January 15, 2021 Approved
Serverless 2.18.0 416 Thursday, January 7, 2021 Approved
Serverless 2.16.1 426 Tuesday, December 22, 2020 Approved
Serverless 2.16.0 270 Friday, December 18, 2020 Approved
Serverless 2.15.0 517 Friday, December 4, 2020 Approved
Serverless 2.14.0 274 Tuesday, December 1, 2020 Approved
Serverless 2.13.0 311 Thursday, November 26, 2020 Approved
Serverless 2.12.0 347 Friday, November 20, 2020 Approved
Serverless 2.11.1 502 Monday, November 9, 2020 Approved
Serverless 2.11.0 193 Friday, November 6, 2020 Approved
Serverless 2.10.0 439 Tuesday, November 3, 2020 Approved
Serverless 2.9.0 338 Thursday, October 29, 2020 Approved
Serverless 2.8.0 460 Friday, October 16, 2020 Approved
Serverless 2.7.0 358 Tuesday, October 13, 2020 Approved
Serverless 2.6.0 298 Friday, October 9, 2020 Approved
Serverless 2.5.0 238 Wednesday, October 7, 2020 Approved
Serverless 2.4.0 337 Wednesday, September 30, 2020 Approved
Serverless 2.3.0 344 Friday, September 25, 2020 Approved
Serverless 2.2.0 267 Wednesday, September 23, 2020 Approved
Serverless 2.1.1 373 Thursday, September 17, 2020 Approved
Serverless 2.1.0 242 Wednesday, September 16, 2020 Approved
Serverless 2.0.0 370 Thursday, September 10, 2020 Approved
Serverless 1.83.3 133 Tuesday, March 23, 2021 Approved
Serverless 1.83.2 205 Friday, November 6, 2020 Approved
Serverless 1.83.0 254 Thursday, September 10, 2020 Approved
Serverless 1.82.0 351 Friday, September 4, 2020 Approved
Serverless 1.81.1 237 Wednesday, September 2, 2020 Approved
Serverless 1.81.0 247 Wednesday, September 2, 2020 Approved
Serverless 1.80.0 404 Wednesday, August 26, 2020 Approved
Serverless 1.79.0 355 Wednesday, August 19, 2020 Approved
Serverless 1.78.1 482 Tuesday, August 4, 2020 Approved
Serverless 1.78.0 232 Monday, August 3, 2020 Approved
Serverless 1.77.1 375 Tuesday, July 28, 2020 Approved
Serverless 1.77.0 283 Monday, July 27, 2020 Approved
Serverless 1.76.1 262 Thursday, July 23, 2020 Approved
Serverless 1.76.0 204 Thursday, July 23, 2020 Approved
Serverless 1.75.1 356 Thursday, July 16, 2020 Approved
Serverless 1.75.0 240 Wednesday, July 15, 2020 Approved
Serverless 1.74.1 595 Monday, June 29, 2020 Approved
Serverless 1.74.0 240 Friday, June 26, 2020 Approved
Serverless 1.73.1 461 Tuesday, June 16, 2020 Approved
Serverless 1.73.0 216 Tuesday, June 16, 2020 Approved
Serverless 1.72.0 672 Tuesday, June 2, 2020 Approved
Serverless 1.71.3 671 Wednesday, May 20, 2020 Approved
Serverless 1.71.2 252 Wednesday, May 20, 2020 Approved
Serverless 1.71.1 448 Friday, May 15, 2020 Approved
Serverless 1.70.1 389 Monday, May 11, 2020 Approved
Serverless 1.70.0 348 Thursday, May 7, 2020 Approved
Serverless 1.69.0 421 Wednesday, April 29, 2020 Approved
Serverless 1.68.0 404 Wednesday, April 22, 2020 Approved
Serverless 1.67.3 588 Wednesday, April 8, 2020 Approved
Serverless 1.67.2 241 Tuesday, April 7, 2020 Approved
Serverless 1.67.1 310 Tuesday, April 7, 2020 Approved
Serverless 1.67.0 581 Thursday, March 19, 2020 Approved
Serverless 1.66.0 386 Monday, March 9, 2020 Approved
Serverless 1.65.0 349 Friday, February 28, 2020 Approved
Serverless 1.64.1 199 Wednesday, February 26, 2020 Approved
Serverless 1.64.0 282 Wednesday, February 19, 2020 Approved
Serverless 1.63.0 450 Wednesday, February 5, 2020 Approved
Serverless 1.62.0 257 Wednesday, January 29, 2020 Approved
Serverless 1.61.3 279 Tuesday, January 21, 2020 Approved
Serverless 1.61.2 243 Thursday, January 16, 2020 Approved
Serverless 1.61.1 219 Tuesday, January 14, 2020 Approved
Serverless 1.61.0 173 Monday, January 13, 2020 Approved
Serverless 1.60.5 193 Thursday, January 9, 2020 Approved
Serverless 1.59.3 178 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