Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 1.07 KB

EB-README.md

File metadata and controls

54 lines (42 loc) · 1.07 KB

Tricktionary & The Elastic Beanstalk.

a StorySquad API

Starring

  • NodeJS
  • TypeScript
  • Express
  • Knex
  • SocketIO

Deployed by

To deploy this on elastic beanstalk, download and install the eb CLI. https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html#eb-cli3-install.scripts

initialize and create the environment

  • generate your .elasticbeanstalk/config.yml and be sure to choose the Nodejs platform during the initialization process.
eb init
  • create instance on the elastic beanstalk
eb create

develop, build, test

  • transpile the latest TypeScript
npm run build
  • run locally and test
npm run start

Deploymen via eb CLI

After writing a new feature or fixing a broken piece of legacy code.

  • make your pull request, then
eb deploy

*To simplify the deployment process, all transpiled code is committed.