Mailspring/README.md

49 lines
1.8 KiB
Markdown
Raw Normal View History

2016-06-21 03:19:01 +08:00
# K2 - Sync Engine Experiment
2016-07-08 03:08:48 +08:00
# Initial Setup:
2016-07-08 03:08:48 +08:00
## New Computer (Mac):
2016-07-08 03:08:48 +08:00
1. Install [Homebrew](http://brew.sh/)
2016-07-08 07:06:04 +08:00
2. Install [VirtualBox 5+](https://www.virtualbox.org/wiki/Downloads)
3. Install [Docker for Mac](https://docs.docker.com/docker-for-mac/)
4. Install [NVM](https://github.com/creationix/nvm) `brew install nvm`
5. Install Node 6+ via NVM: `nvm install 6`
2016-07-09 00:00:57 +08:00
6. Install Redis locally `brew install redis`
2016-06-21 03:19:01 +08:00
2016-07-08 03:08:48 +08:00
## New to AWS:
2016-07-08 07:06:04 +08:00
1. Install [Elastic Beanstalk CLI](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html#eb-cli3-install-osx): `sudo pip install awsebcli`
2. Install [AWS CLI](https://aws.amazon.com/cli/): `brew install awscli`
2016-07-08 03:08:48 +08:00
1. Add your AWS IAM Security Credentials to `aws configure`.
1. These are at Console Home -> IAM -> Users -> {{Your Name}} -> Security
Credentials. Note that your private key was only shown unpon creation. If
you've lost your private key you have to deactivate your old key and
create a new one.
2016-07-08 07:06:04 +08:00
3. Get the K2 team private SSH key. (Ignore this when we have a Bastion Host). Ask someone on K2 for a copy of the private SSH key. Copy it to your ~/.ssh folder.
2016-07-08 03:08:48 +08:00
1. `chmod 400 ~/.ssh/k2-keypair.pem`
1. `ssh i ~/.ssh/k2-keypair.pem some-ec2-box-we-own.amazonaws.com`
2016-07-08 07:06:04 +08:00
4. Connect to Elastic Beanstalk instances: `eb init`. Select correct region. Select correct application.
2016-06-21 03:19:01 +08:00
2016-07-08 03:08:48 +08:00
# Developing Locally:
2016-06-25 02:57:24 +08:00
```
npm run start
npm run logs
npm run stop
2016-06-25 02:57:24 +08:00
```
2016-07-08 03:08:48 +08:00
2016-07-09 00:12:11 +08:00
We use [pm2](http://pm2.keymetrics.io/) to launch a variety of processes
(sync, api, dashboard, processor, etc).
You can see the scripts that are running and their arguments in
`/pm2-dev.yml`
To test to see if the basic API is up go to: `http://lvh.me:5100/ping`. You
should see `pong`.
`lvh.me` is a DNS hack that redirects back to 127.0.0.1 with the added
benefit of letting us use subdomains.
2016-07-08 03:08:48 +08:00
# Deploying