/chat-app

Instantly deploy a serverless chat app built on AWS Lambda using Serverless Components.

Primary LanguageJavaScriptApache License 2.0Apache-2.0

chat-app

 

Instantly deploy a zero configuration serverless chat app to AWS in seconds using Serverless Components.

 

  1. Install
  2. Create
  3. Configure
  4. Deploy

 

1. Install

$ npm install -g serverless

2. Create

Just create serverless.yml and .env files.

$ touch serverless.yml
$ touch .env      # your AWS api keys
# .env
AWS_ACCESS_KEY_ID=XXX
AWS_SECRET_ACCESS_KEY=XXX

3. Configure

# serverless.yml

myChatApp:
  component: '@serverless/chat-app'
  inputs: # all inputs are optional :)
    colorBackground: white
    colorInputText: black
    logoUrl: null

4. Deploy

$ serverless

 

New to Components?

Checkout the Serverless Components repo for more information.