@serverless/chat-app
v1.0.1
Published
Downloads
16
Readme
chat-app
Instantly deploy a zero configuration serverless chat app to AWS in seconds using Serverless Components.
1. Install
$ npm install -g serverless
2. Create
Just create a serverless.yml
file.
$ touch serverless.yml
$ touch .env # your development AWS api keys
$ touch .env.prod # your production AWS api keys
the .env
files are not required if you have the aws keys set globally and you want to use a single stage, but they should look like this.
AWS_ACCESS_KEY_ID=XXX
AWS_SECRET_ACCESS_KEY=XXX
3. Configure
# serverless.yml
name: my-chat-app
stage: dev
myChatApp:
component: '@serverless/chat-app'
inputs: # all inputs are optional :)
colorBackground: white
colorInputText: black
logoUrl: null
4. Deploy
chat-app (master)$ components
ChatApp › outputs:
url: 'http://chatapp-aegay7.s3-website-us-east-1.amazonaws.com'
56s › dev › ChatApp › done
chat-app (master)$
New to Components?
Checkout the Serverless Components repo for more information.