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:

74,113

Downloads of v 3.38.0:

4,649

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:

74,113

Downloads of v 3.38.0:

4,649

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 173 Thursday, November 16, 2023 Approved
Serverless 3.36.0 648 Monday, October 23, 2023 Approved
Serverless 3.35.2 616 Sunday, September 17, 2023 Approved
Serverless 3.35.1 84 Saturday, September 16, 2023 Approved
Serverless 3.32.2 1412 Friday, June 2, 2023 Approved
Serverless 3.32.1 103 Thursday, June 1, 2023 Approved
Serverless 3.32.0 120 Wednesday, May 31, 2023 Approved
Serverless 3.31.0 338 Wednesday, May 17, 2023 Approved
Serverless 3.30.1 564 Thursday, April 6, 2023 Approved
Serverless 3.30.0 89 Wednesday, April 5, 2023 Approved
Serverless 3.29.0 237 Friday, March 24, 2023 Approved
Serverless 3.28.1 364 Thursday, March 2, 2023 Approved
Serverless 3.28.0 142 Tuesday, February 28, 2023 Approved
Serverless 3.27.0 632 Thursday, January 26, 2023 Approved
Serverless 3.25.1 749 Monday, November 28, 2022 Approved
Serverless 3.25.0 237 Monday, November 21, 2022 Approved
Serverless 3.24.1 311 Friday, November 4, 2022 Approved
Serverless 3.24.0 129 Thursday, November 3, 2022 Approved
Serverless 3.23.0 573 Tuesday, October 11, 2022 Approved
Serverless 3.22.0 1344 Tuesday, August 16, 2022 Approved
Serverless 3.21.0 721 Thursday, July 14, 2022 Approved
Serverless 3.20.0 339 Friday, July 8, 2022 Approved
Serverless 3.19.0 3133 Thursday, June 2, 2022 Approved
Serverless 3.18.2 253 Tuesday, May 24, 2022 Approved
Serverless 3.18.0 189 Thursday, May 19, 2022 Approved
Serverless 3.16.0 468 Friday, April 29, 2022 Approved
Serverless 3.15.1 268 Friday, April 22, 2022 Approved
Serverless 3.15.0 189 Wednesday, April 20, 2022 Approved
Serverless 3.14.0 277 Thursday, April 14, 2022 Approved
Serverless 3.12.0 330 Wednesday, April 6, 2022 Approved
Serverless 3.11.0 198 Monday, April 4, 2022 Approved
Serverless 3.10.2 190 Thursday, March 31, 2022 Approved
Serverless 3.10.1 189 Wednesday, March 30, 2022 Approved
Serverless 3.10.0 255 Friday, March 25, 2022 Approved
Serverless 3.9.0 158 Thursday, March 24, 2022 Approved
Serverless 3.8.0 222 Monday, March 21, 2022 Approved
Serverless 3.7.9 200 Friday, March 18, 2022 Approved
Serverless 3.7.8 127 Thursday, March 17, 2022 Approved
Serverless 3.7.7 113 Thursday, March 17, 2022 Approved
Serverless 3.7.6 121 Thursday, March 17, 2022 Approved
Serverless 3.7.4 294 Thursday, March 10, 2022 Approved
Serverless 3.7.3 162 Wednesday, March 9, 2022 Approved
Serverless 3.7.2 184 Tuesday, March 8, 2022 Approved
Serverless 3.7.1 269 Wednesday, March 2, 2022 Approved
Serverless 3.7.0 827 Tuesday, March 1, 2022 Approved
Serverless 3.6.0 113 Tuesday, March 1, 2022 Approved
Serverless 3.5.0 141 Monday, February 28, 2022 Approved
Serverless 3.4.0 155 Friday, February 25, 2022 Approved
Serverless 3.3.0 303 Monday, February 21, 2022 Approved
Serverless 3.2.0 350 Thursday, February 10, 2022 Approved
Serverless 3.1.1 417 Wednesday, February 2, 2022 Approved
Serverless 3.1.0 296 Tuesday, February 1, 2022 Approved
Serverless 3.0.1 255 Friday, January 28, 2022 Approved
Serverless 3.0.0 143 Thursday, January 27, 2022 Approved
Serverless 2.72.3 202 Wednesday, February 23, 2022 Approved
Serverless 2.72.2 161 Monday, January 24, 2022 Approved
Serverless 2.72.0 498 Monday, January 17, 2022 Approved
Serverless 2.71.0 151 Monday, January 10, 2022 Approved
Serverless 2.69.1 766 Wednesday, December 15, 2021 Approved
Serverless 2.69.0 246 Monday, December 13, 2021 Approved
Serverless 2.68.0 412 Thursday, December 2, 2021 Approved
Serverless 2.67.0 315 Friday, November 26, 2021 Approved
Serverless 2.66.2 388 Wednesday, November 17, 2021 Approved
Serverless 2.66.1 376 Wednesday, November 10, 2021 Approved
Serverless 2.66.0 151 Tuesday, November 9, 2021 Approved
Serverless 2.65.0 342 Thursday, November 4, 2021 Approved
Serverless 2.64.1 511 Wednesday, October 20, 2021 Approved
Serverless 2.64.0 176 Wednesday, October 20, 2021 Approved
Serverless 2.63.0 313 Friday, October 15, 2021 Approved
Serverless 2.62.0 343 Friday, October 8, 2021 Approved
Serverless 2.61.0 303 Monday, October 4, 2021 Approved
Serverless 2.60.3 220 Friday, October 1, 2021 Approved
Serverless 2.60.2 168 Thursday, September 30, 2021 Approved
Serverless 2.60.1 193 Wednesday, September 29, 2021 Approved
Serverless 2.60.0 292 Friday, September 24, 2021 Approved
Serverless 2.59.0 426 Tuesday, September 14, 2021 Approved
Serverless 2.58.0 186 Monday, September 13, 2021 Approved
Serverless 2.57.0 463 Tuesday, August 31, 2021 Approved
Serverless 2.56.0 342 Wednesday, August 25, 2021 Approved
Serverless 2.55.0 383 Wednesday, August 18, 2021 Approved
Serverless 2.54.0 321 Thursday, August 12, 2021 Approved
Serverless 2.53.1 325 Friday, August 6, 2021 Approved
Serverless 2.53.0 223 Wednesday, August 4, 2021 Approved
Serverless 2.52.1 477 Thursday, July 22, 2021 Approved
Serverless 2.52.0 338 Thursday, July 15, 2021 Approved
Serverless 2.51.2 339 Thursday, July 8, 2021 Approved
Serverless 2.51.1 186 Thursday, July 8, 2021 Approved
Serverless 2.51.0 282 Tuesday, July 6, 2021 Approved
Serverless 2.50.0 338 Thursday, July 1, 2021 Approved
Serverless 2.49.0 243 Tuesday, June 29, 2021 Approved
Serverless 2.48.1 259 Monday, June 28, 2021 Approved
Serverless 2.47.0 360 Friday, June 18, 2021 Approved
Serverless 2.46.0 487 Friday, June 11, 2021 Approved
Serverless 2.45.2 275 Wednesday, June 9, 2021 Approved
Serverless 2.45.1 235 Tuesday, June 8, 2021 Approved
Serverless 2.45.0 141 Tuesday, June 8, 2021 Approved
Serverless 2.44.0 368 Wednesday, June 2, 2021 Approved
Serverless 2.43.1 433 Tuesday, May 25, 2021 Approved
Serverless 2.43.0 340 Thursday, May 20, 2021 Approved
Serverless 2.42.0 211 Wednesday, May 19, 2021 Approved
Serverless 2.41.2 316 Thursday, May 13, 2021 Approved
Serverless 2.41.1 253 Tuesday, May 11, 2021 Approved
Serverless 2.41.0 153 Tuesday, May 11, 2021 Approved
Serverless 2.40.0 275 Thursday, May 6, 2021 Approved
Serverless 2.39.2 228 Tuesday, May 4, 2021 Approved
Serverless 2.39.1 201 Monday, May 3, 2021 Approved
Serverless 2.39.0 229 Friday, April 30, 2021 Approved
Serverless 2.37.1 463 Wednesday, April 21, 2021 Approved
Serverless 2.37.0 204 Tuesday, April 20, 2021 Approved
Serverless 2.36.0 185 Tuesday, April 20, 2021 Approved
Serverless 2.35.0 427 Friday, April 9, 2021 Approved
Serverless 2.34.0 260 Wednesday, April 7, 2021 Approved
Serverless 2.33.1 261 Saturday, April 3, 2021 Approved
Serverless 2.33.0 191 Friday, April 2, 2021 Approved
Serverless 2.32.1 191 Wednesday, March 31, 2021 Approved
Serverless 2.31.0 659 Tuesday, March 23, 2021 Approved
Serverless 2.30.3 467 Wednesday, March 17, 2021 Approved
Serverless 2.30.2 185 Tuesday, March 16, 2021 Approved
Serverless 2.30.1 220 Tuesday, March 16, 2021 Approved
Serverless 2.30.0 208 Tuesday, March 16, 2021 Approved
Serverless 2.29.0 399 Tuesday, March 9, 2021 Approved
Serverless 2.28.7 284 Thursday, March 4, 2021 Approved
Serverless 2.28.6 206 Wednesday, March 3, 2021 Approved
Serverless 2.28.5 141 Wednesday, March 3, 2021 Approved
Serverless 2.28.4 169 Wednesday, March 3, 2021 Approved
Serverless 2.28.3 164 Tuesday, March 2, 2021 Approved
Serverless 2.28.2 146 Tuesday, March 2, 2021 Approved
Serverless 2.28.1 179 Tuesday, March 2, 2021 Approved
Serverless 2.28.0 328 Friday, February 26, 2021 Approved
Serverless 2.27.1 237 Thursday, February 25, 2021 Approved
Serverless 2.27.0 216 Wednesday, February 24, 2021 Approved
Serverless 2.26.0 199 Wednesday, February 24, 2021 Approved
Serverless 2.25.2 309 Thursday, February 18, 2021 Approved
Serverless 2.25.1 227 Tuesday, February 16, 2021 Approved
Serverless 2.25.0 191 Tuesday, February 16, 2021 Approved
Serverless 2.24.0 183 Tuesday, February 16, 2021 Approved
Serverless 2.23.0 389 Monday, February 8, 2021 Approved
Serverless 2.22.0 361 Tuesday, February 2, 2021 Approved
Serverless 2.21.1 373 Tuesday, January 26, 2021 Approved
Serverless 2.21.0 167 Tuesday, January 26, 2021 Approved
Serverless 2.20.1 287 Friday, January 22, 2021 Approved
Serverless 2.20.0 237 Thursday, January 21, 2021 Approved
Serverless 2.19.0 379 Friday, January 15, 2021 Approved
Serverless 2.18.0 430 Thursday, January 7, 2021 Approved
Serverless 2.16.1 437 Tuesday, December 22, 2020 Approved
Serverless 2.16.0 281 Friday, December 18, 2020 Approved
Serverless 2.15.0 528 Friday, December 4, 2020 Approved
Serverless 2.14.0 286 Tuesday, December 1, 2020 Approved
Serverless 2.13.0 319 Thursday, November 26, 2020 Approved
Serverless 2.12.0 357 Friday, November 20, 2020 Approved
Serverless 2.11.1 509 Monday, November 9, 2020 Approved
Serverless 2.11.0 204 Friday, November 6, 2020 Approved
Serverless 2.10.0 447 Tuesday, November 3, 2020 Approved
Serverless 2.9.0 351 Thursday, October 29, 2020 Approved
Serverless 2.8.0 469 Friday, October 16, 2020 Approved
Serverless 2.7.0 367 Tuesday, October 13, 2020 Approved
Serverless 2.6.0 307 Friday, October 9, 2020 Approved
Serverless 2.5.0 264 Wednesday, October 7, 2020 Approved
Serverless 2.4.0 349 Wednesday, September 30, 2020 Approved
Serverless 2.3.0 358 Friday, September 25, 2020 Approved
Serverless 2.2.0 276 Wednesday, September 23, 2020 Approved
Serverless 2.1.1 387 Thursday, September 17, 2020 Approved
Serverless 2.1.0 259 Wednesday, September 16, 2020 Approved
Serverless 2.0.0 377 Thursday, September 10, 2020 Approved
Serverless 1.83.3 138 Tuesday, March 23, 2021 Approved
Serverless 1.83.2 219 Friday, November 6, 2020 Approved
Serverless 1.83.0 259 Thursday, September 10, 2020 Approved
Serverless 1.82.0 358 Friday, September 4, 2020 Approved
Serverless 1.81.1 248 Wednesday, September 2, 2020 Approved
Serverless 1.81.0 262 Wednesday, September 2, 2020 Approved
Serverless 1.80.0 414 Wednesday, August 26, 2020 Approved
Serverless 1.79.0 361 Wednesday, August 19, 2020 Approved
Serverless 1.78.1 493 Tuesday, August 4, 2020 Approved
Serverless 1.78.0 238 Monday, August 3, 2020 Approved
Serverless 1.77.1 384 Tuesday, July 28, 2020 Approved
Serverless 1.77.0 287 Monday, July 27, 2020 Approved
Serverless 1.76.1 269 Thursday, July 23, 2020 Approved
Serverless 1.76.0 213 Thursday, July 23, 2020 Approved
Serverless 1.75.1 372 Thursday, July 16, 2020 Approved
Serverless 1.75.0 248 Wednesday, July 15, 2020 Approved
Serverless 1.74.1 601 Monday, June 29, 2020 Approved
Serverless 1.74.0 250 Friday, June 26, 2020 Approved
Serverless 1.73.1 477 Tuesday, June 16, 2020 Approved
Serverless 1.73.0 227 Tuesday, June 16, 2020 Approved
Serverless 1.72.0 678 Tuesday, June 2, 2020 Approved
Serverless 1.71.3 680 Wednesday, May 20, 2020 Approved
Serverless 1.71.2 264 Wednesday, May 20, 2020 Approved
Serverless 1.71.1 463 Friday, May 15, 2020 Approved
Serverless 1.70.1 393 Monday, May 11, 2020 Approved
Serverless 1.70.0 363 Thursday, May 7, 2020 Approved
Serverless 1.69.0 429 Wednesday, April 29, 2020 Approved
Serverless 1.68.0 410 Wednesday, April 22, 2020 Approved
Serverless 1.67.3 598 Wednesday, April 8, 2020 Approved
Serverless 1.67.2 247 Tuesday, April 7, 2020 Approved
Serverless 1.67.1 317 Tuesday, April 7, 2020 Approved
Serverless 1.67.0 588 Thursday, March 19, 2020 Approved
Serverless 1.66.0 393 Monday, March 9, 2020 Approved
Serverless 1.65.0 355 Friday, February 28, 2020 Approved
Serverless 1.64.1 205 Wednesday, February 26, 2020 Approved
Serverless 1.64.0 290 Wednesday, February 19, 2020 Approved
Serverless 1.63.0 454 Wednesday, February 5, 2020 Approved
Serverless 1.62.0 267 Wednesday, January 29, 2020 Approved
Serverless 1.61.3 292 Tuesday, January 21, 2020 Approved
Serverless 1.61.2 254 Thursday, January 16, 2020 Approved
Serverless 1.61.1 223 Tuesday, January 14, 2020 Approved
Serverless 1.61.0 186 Monday, January 13, 2020 Approved
Serverless 1.60.5 202 Thursday, January 9, 2020 Approved
Serverless 1.59.3 184 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