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,597

Downloads of v 2.7.0:

290

Last Update:

13 Oct 2020

Package Maintainer(s):

Software Author(s):

  • Serverless Inc.

Tags:

serverless lambda aws amazon azure google-cloud apache-open-whisk iot

Serverless

This is not the latest version of Serverless available.

  • 1
  • 2
  • 3

2.7.0 | Updated: 13 Oct 2020

Downloads:

56,597

Downloads of v 2.7.0:

290

Maintainer(s):

Software Author(s):

  • Serverless Inc.

Serverless 2.7.0

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="'2.7.0'" [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="'2.7.0'" 
$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: '2.7.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  '2.7.0'
end

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


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

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


package { 'serverless':
  ensure   => '2.7.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 14 Oct 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: 3050EF18710C272731B95FE723AD5A68 | sha1: F9EDD827B1722BA853E90DD473171AE5E3A0F9B9 | sha256: 1691962EE8E35467C18E0C6AACA5B28EF798A35EF5217C36C8D197C5688884E2 | sha512: B8B676898504BFFBEFD3367D0B37797994C245218412BED047F380DD563528C7B9962F5F39DA0D3A614EF5EC5A19B14A997D69E4902544E9CFFAA921503B2B42
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 113 Thursday, November 16, 2023 Approved
Serverless 3.36.0 602 Monday, October 23, 2023 Approved
Serverless 3.35.2 567 Sunday, September 17, 2023 Approved
Serverless 3.35.1 48 Saturday, September 16, 2023 Approved
Serverless 3.32.2 1386 Friday, June 2, 2023 Approved
Serverless 3.32.1 64 Thursday, June 1, 2023 Approved
Serverless 3.32.0 71 Wednesday, May 31, 2023 Approved
Serverless 3.31.0 298 Wednesday, May 17, 2023 Approved
Serverless 3.30.1 525 Thursday, April 6, 2023 Approved
Serverless 3.30.0 43 Wednesday, April 5, 2023 Approved
Serverless 3.29.0 192 Friday, March 24, 2023 Approved
Serverless 3.28.1 330 Thursday, March 2, 2023 Approved
Serverless 3.28.0 98 Tuesday, February 28, 2023 Approved
Serverless 3.27.0 592 Thursday, January 26, 2023 Approved
Serverless 3.25.1 710 Monday, November 28, 2022 Approved
Serverless 3.25.0 197 Monday, November 21, 2022 Approved
Serverless 3.24.1 268 Friday, November 4, 2022 Approved
Serverless 3.24.0 87 Thursday, November 3, 2022 Approved
Serverless 3.23.0 525 Tuesday, October 11, 2022 Approved
Serverless 3.22.0 1299 Tuesday, August 16, 2022 Approved
Serverless 3.21.0 681 Thursday, July 14, 2022 Approved
Serverless 3.20.0 302 Friday, July 8, 2022 Approved
Serverless 3.19.0 2649 Thursday, June 2, 2022 Approved
Serverless 3.18.2 218 Tuesday, May 24, 2022 Approved
Serverless 3.18.0 146 Thursday, May 19, 2022 Approved
Serverless 3.16.0 417 Friday, April 29, 2022 Approved
Serverless 3.15.1 238 Friday, April 22, 2022 Approved
Serverless 3.15.0 157 Wednesday, April 20, 2022 Approved
Serverless 3.14.0 230 Thursday, April 14, 2022 Approved
Serverless 3.12.0 275 Wednesday, April 6, 2022 Approved
Serverless 3.11.0 156 Monday, April 4, 2022 Approved
Serverless 3.10.2 148 Thursday, March 31, 2022 Approved
Serverless 3.10.1 147 Wednesday, March 30, 2022 Approved
Serverless 3.10.0 206 Friday, March 25, 2022 Approved
Serverless 3.9.0 116 Thursday, March 24, 2022 Approved
Serverless 3.8.0 183 Monday, March 21, 2022 Approved
Serverless 3.7.9 150 Friday, March 18, 2022 Approved
Serverless 3.7.8 80 Thursday, March 17, 2022 Approved
Serverless 3.7.7 63 Thursday, March 17, 2022 Approved
Serverless 3.7.6 75 Thursday, March 17, 2022 Approved
Serverless 3.7.4 250 Thursday, March 10, 2022 Approved
Serverless 3.7.3 114 Wednesday, March 9, 2022 Approved
Serverless 3.7.2 138 Tuesday, March 8, 2022 Approved
Serverless 3.7.1 227 Wednesday, March 2, 2022 Approved
Serverless 3.7.0 761 Tuesday, March 1, 2022 Approved
Serverless 3.6.0 69 Tuesday, March 1, 2022 Approved
Serverless 3.5.0 99 Monday, February 28, 2022 Approved
Serverless 3.4.0 113 Friday, February 25, 2022 Approved
Serverless 3.3.0 244 Monday, February 21, 2022 Approved
Serverless 3.2.0 307 Thursday, February 10, 2022 Approved
Serverless 3.1.1 379 Wednesday, February 2, 2022 Approved
Serverless 3.1.0 215 Tuesday, February 1, 2022 Approved
Serverless 3.0.1 205 Friday, January 28, 2022 Approved
Serverless 3.0.0 105 Thursday, January 27, 2022 Approved
Serverless 2.72.3 118 Wednesday, February 23, 2022 Approved
Serverless 2.72.2 95 Monday, January 24, 2022 Approved
Serverless 2.72.0 395 Monday, January 17, 2022 Approved
Serverless 2.71.0 73 Monday, January 10, 2022 Approved
Serverless 2.69.1 686 Wednesday, December 15, 2021 Approved
Serverless 2.69.0 147 Monday, December 13, 2021 Approved
Serverless 2.68.0 336 Thursday, December 2, 2021 Approved
Serverless 2.67.0 225 Friday, November 26, 2021 Approved
Serverless 2.66.2 299 Wednesday, November 17, 2021 Approved
Serverless 2.66.1 304 Wednesday, November 10, 2021 Approved
Serverless 2.66.0 95 Tuesday, November 9, 2021 Approved
Serverless 2.65.0 248 Thursday, November 4, 2021 Approved
Serverless 2.64.1 432 Wednesday, October 20, 2021 Approved
Serverless 2.64.0 91 Wednesday, October 20, 2021 Approved
Serverless 2.63.0 235 Friday, October 15, 2021 Approved
Serverless 2.62.0 270 Friday, October 8, 2021 Approved
Serverless 2.61.0 213 Monday, October 4, 2021 Approved
Serverless 2.60.3 153 Friday, October 1, 2021 Approved
Serverless 2.60.2 108 Thursday, September 30, 2021 Approved
Serverless 2.60.1 110 Wednesday, September 29, 2021 Approved
Serverless 2.60.0 214 Friday, September 24, 2021 Approved
Serverless 2.59.0 357 Tuesday, September 14, 2021 Approved
Serverless 2.58.0 127 Monday, September 13, 2021 Approved
Serverless 2.57.0 397 Tuesday, August 31, 2021 Approved
Serverless 2.56.0 267 Wednesday, August 25, 2021 Approved
Serverless 2.55.0 308 Wednesday, August 18, 2021 Approved
Serverless 2.54.0 272 Thursday, August 12, 2021 Approved
Serverless 2.53.1 234 Friday, August 6, 2021 Approved
Serverless 2.53.0 153 Wednesday, August 4, 2021 Approved
Serverless 2.52.1 418 Thursday, July 22, 2021 Approved
Serverless 2.52.0 278 Thursday, July 15, 2021 Approved
Serverless 2.51.2 283 Thursday, July 8, 2021 Approved
Serverless 2.51.1 90 Thursday, July 8, 2021 Approved
Serverless 2.51.0 191 Tuesday, July 6, 2021 Approved
Serverless 2.50.0 253 Thursday, July 1, 2021 Approved
Serverless 2.49.0 177 Tuesday, June 29, 2021 Approved
Serverless 2.48.1 168 Monday, June 28, 2021 Approved
Serverless 2.47.0 300 Friday, June 18, 2021 Approved
Serverless 2.46.0 413 Friday, June 11, 2021 Approved
Serverless 2.45.2 195 Wednesday, June 9, 2021 Approved
Serverless 2.45.1 158 Tuesday, June 8, 2021 Approved
Serverless 2.45.0 100 Tuesday, June 8, 2021 Approved
Serverless 2.44.0 298 Wednesday, June 2, 2021 Approved
Serverless 2.43.1 342 Tuesday, May 25, 2021 Approved
Serverless 2.43.0 254 Thursday, May 20, 2021 Approved
Serverless 2.42.0 157 Wednesday, May 19, 2021 Approved
Serverless 2.41.2 265 Thursday, May 13, 2021 Approved
Serverless 2.41.1 171 Tuesday, May 11, 2021 Approved
Serverless 2.41.0 98 Tuesday, May 11, 2021 Approved
Serverless 2.40.0 206 Thursday, May 6, 2021 Approved
Serverless 2.39.2 164 Tuesday, May 4, 2021 Approved
Serverless 2.39.1 155 Monday, May 3, 2021 Approved
Serverless 2.39.0 153 Friday, April 30, 2021 Approved
Serverless 2.37.1 380 Wednesday, April 21, 2021 Approved
Serverless 2.37.0 158 Tuesday, April 20, 2021 Approved
Serverless 2.36.0 105 Tuesday, April 20, 2021 Approved
Serverless 2.35.0 349 Friday, April 9, 2021 Approved
Serverless 2.34.0 187 Wednesday, April 7, 2021 Approved
Serverless 2.33.1 184 Saturday, April 3, 2021 Approved
Serverless 2.33.0 101 Friday, April 2, 2021 Approved
Serverless 2.32.1 114 Wednesday, March 31, 2021 Approved
Serverless 2.31.0 589 Tuesday, March 23, 2021 Approved
Serverless 2.30.3 397 Wednesday, March 17, 2021 Approved
Serverless 2.30.2 124 Tuesday, March 16, 2021 Approved
Serverless 2.30.1 125 Tuesday, March 16, 2021 Approved
Serverless 2.30.0 118 Tuesday, March 16, 2021 Approved
Serverless 2.29.0 323 Tuesday, March 9, 2021 Approved
Serverless 2.28.7 228 Thursday, March 4, 2021 Approved
Serverless 2.28.6 135 Wednesday, March 3, 2021 Approved
Serverless 2.28.5 98 Wednesday, March 3, 2021 Approved
Serverless 2.28.4 110 Wednesday, March 3, 2021 Approved
Serverless 2.28.3 114 Tuesday, March 2, 2021 Approved
Serverless 2.28.2 89 Tuesday, March 2, 2021 Approved
Serverless 2.28.1 110 Tuesday, March 2, 2021 Approved
Serverless 2.28.0 243 Friday, February 26, 2021 Approved
Serverless 2.27.1 143 Thursday, February 25, 2021 Approved
Serverless 2.27.0 133 Wednesday, February 24, 2021 Approved
Serverless 2.26.0 132 Wednesday, February 24, 2021 Approved
Serverless 2.25.2 249 Thursday, February 18, 2021 Approved
Serverless 2.25.1 167 Tuesday, February 16, 2021 Approved
Serverless 2.25.0 112 Tuesday, February 16, 2021 Approved
Serverless 2.24.0 84 Tuesday, February 16, 2021 Approved
Serverless 2.23.0 301 Monday, February 8, 2021 Approved
Serverless 2.22.0 269 Tuesday, February 2, 2021 Approved
Serverless 2.21.1 307 Tuesday, January 26, 2021 Approved
Serverless 2.21.0 112 Tuesday, January 26, 2021 Approved
Serverless 2.20.1 203 Friday, January 22, 2021 Approved
Serverless 2.20.0 175 Thursday, January 21, 2021 Approved
Serverless 2.19.0 302 Friday, January 15, 2021 Approved
Serverless 2.18.0 339 Thursday, January 7, 2021 Approved
Serverless 2.16.1 366 Tuesday, December 22, 2020 Approved
Serverless 2.16.0 218 Friday, December 18, 2020 Approved
Serverless 2.15.0 437 Friday, December 4, 2020 Approved
Serverless 2.14.0 182 Tuesday, December 1, 2020 Approved
Serverless 2.13.0 239 Thursday, November 26, 2020 Approved
Serverless 2.12.0 273 Friday, November 20, 2020 Approved
Serverless 2.11.1 427 Monday, November 9, 2020 Approved
Serverless 2.11.0 124 Friday, November 6, 2020 Approved
Serverless 2.10.0 361 Tuesday, November 3, 2020 Approved
Serverless 2.9.0 287 Thursday, October 29, 2020 Approved
Serverless 2.8.0 402 Friday, October 16, 2020 Approved
Serverless 2.7.0 290 Tuesday, October 13, 2020 Approved
Serverless 2.6.0 240 Friday, October 9, 2020 Approved
Serverless 2.5.0 191 Wednesday, October 7, 2020 Approved
Serverless 2.4.0 292 Wednesday, September 30, 2020 Approved
Serverless 2.3.0 253 Friday, September 25, 2020 Approved
Serverless 2.2.0 197 Wednesday, September 23, 2020 Approved
Serverless 2.1.1 296 Thursday, September 17, 2020 Approved
Serverless 2.1.0 174 Wednesday, September 16, 2020 Approved
Serverless 2.0.0 313 Thursday, September 10, 2020 Approved
Serverless 1.83.3 81 Tuesday, March 23, 2021 Approved
Serverless 1.83.2 135 Friday, November 6, 2020 Approved
Serverless 1.83.0 164 Thursday, September 10, 2020 Approved
Serverless 1.82.0 293 Friday, September 4, 2020 Approved
Serverless 1.81.1 163 Wednesday, September 2, 2020 Approved
Serverless 1.81.0 155 Wednesday, September 2, 2020 Approved
Serverless 1.80.0 321 Wednesday, August 26, 2020 Approved
Serverless 1.79.0 291 Wednesday, August 19, 2020 Approved
Serverless 1.78.1 416 Tuesday, August 4, 2020 Approved
Serverless 1.78.0 180 Monday, August 3, 2020 Approved
Serverless 1.77.1 304 Tuesday, July 28, 2020 Approved
Serverless 1.77.0 198 Monday, July 27, 2020 Approved
Serverless 1.76.1 199 Thursday, July 23, 2020 Approved
Serverless 1.76.0 116 Thursday, July 23, 2020 Approved
Serverless 1.75.1 307 Thursday, July 16, 2020 Approved
Serverless 1.75.0 167 Wednesday, July 15, 2020 Approved
Serverless 1.74.1 549 Monday, June 29, 2020 Approved
Serverless 1.74.0 189 Friday, June 26, 2020 Approved
Serverless 1.73.1 383 Tuesday, June 16, 2020 Approved
Serverless 1.73.0 151 Tuesday, June 16, 2020 Approved
Serverless 1.72.0 609 Tuesday, June 2, 2020 Approved
Serverless 1.71.3 619 Wednesday, May 20, 2020 Approved
Serverless 1.71.2 178 Wednesday, May 20, 2020 Approved
Serverless 1.71.1 370 Friday, May 15, 2020 Approved
Serverless 1.70.1 297 Monday, May 11, 2020 Approved
Serverless 1.70.0 237 Thursday, May 7, 2020 Approved
Serverless 1.69.0 354 Wednesday, April 29, 2020 Approved
Serverless 1.68.0 348 Wednesday, April 22, 2020 Approved
Serverless 1.67.3 519 Wednesday, April 8, 2020 Approved
Serverless 1.67.2 166 Tuesday, April 7, 2020 Approved
Serverless 1.67.1 240 Tuesday, April 7, 2020 Approved
Serverless 1.67.0 542 Thursday, March 19, 2020 Approved
Serverless 1.66.0 346 Monday, March 9, 2020 Approved
Serverless 1.65.0 305 Friday, February 28, 2020 Approved
Serverless 1.64.1 174 Wednesday, February 26, 2020 Approved
Serverless 1.64.0 245 Wednesday, February 19, 2020 Approved
Serverless 1.63.0 411 Wednesday, February 5, 2020 Approved
Serverless 1.62.0 220 Wednesday, January 29, 2020 Approved
Serverless 1.61.3 247 Tuesday, January 21, 2020 Approved
Serverless 1.61.2 204 Thursday, January 16, 2020 Approved
Serverless 1.61.1 187 Tuesday, January 14, 2020 Approved
Serverless 1.61.0 138 Monday, January 13, 2020 Approved
Serverless 1.60.5 158 Thursday, January 9, 2020 Approved
Serverless 1.59.3 149 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