Skip to content

Commit

Permalink
Merge pull request #6 from bocoup/deploy-readme
Browse files Browse the repository at this point in the history
adds a version of deploy's README
  • Loading branch information
boazsender authored May 28, 2024
2 parents a0cdeba + 4959f10 commit 11df0d3
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ We use [Prettier](https://prettier.io/) for auto-formatting in this project. It'

## Deployment

This project includes a diy deployment workflow from the [bocoup/deploy](https://github.com/bocoup/deploy) repo. Follow the instructions in this repo's copy of `deploy/README.md`. It will guide you through the process of:
This project includes a diy deployment workflow from the [bocoup/deploy](https://github.com/bocoup/deploy) repo. Follow the instructions in the [deploy README](/deploy/README.md). It will guide you through the process of:

1. Creating or catting your SSH keys
2. Getting a server
Expand Down
106 changes: 106 additions & 0 deletions deploy/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# DIY Deploy

This project includes ansible scripts for locking down and provisioning a node.js server, and deploying something you can `npm start` to that server. That server can be bare metal, or a Virtual Private Server (VPS). These scripts make it so you never have to shell into your server by hand.

## Create or cat ssh keys

If you already have an ssh key pair, `cat ~/.ssh/id_rsa.pub` or `~/.ssh/id_ed25519.pub` depending on how long ago you did this for the first time.

If you don't have a key pair yet, then generate one:

```sh
ssh-keygen -t ed25519 -C "[email protected]"
```

Hit enter three times to save the key pair in the default location and not use a passphrase.

## Get a server

## Install Ansible

Next let's install `ansible`:

### On a mac

[Install homebrew](https://docs.brew.sh/Installation) and then:

```sh
brew update && brew install ansible
```

### On Linux

```sh
sudo apt-add-repository ppa:ansible/ansible && sudo apt update && sudo apt install ansible
```

### On Windows

Follow the [Ansible Windows Installation Instructions](https://docs.ansible.com/ansible/latest/os_guide/windows_setup.html)

## Provision a new server

If you don't have one yet, try a droplet on [digital ocean](https://digitalocean.com/). Something with 1gb of memory should be enough to start you off. Point a domain at that droplet, and replace `privacy-stack-template.com` with that domain in the following instructions. An IP address will work as well.

### Copy or submodule this project into your existing node app

```sh
cd /path/to/myproject && git submodule add https://github.com/bocoup/deploy.git && git submodule init
```

### Copy an update inventory.example.yml

These ansible playbooks uses the variables in an inventory to know what server to deploy to, what domain to use, what version of node to install, and if you have a root ssh password, what password to use.

First copy the example inventory file:

```sh
cp deploy/inventory.example.yml inventory.yml
```

Then change the values in that file to match your project:

```yml
# Our production server.
# Copy this whole block if you'd like to add a staging server
Production:
# The IP address of your server.
# Add a second one if you'd like to deploy twice.
# You can add as many as you want.
hosts: an.ip.add.ress
vars:
# Used for your app's domain name
domain: example.com
# Used for your certbot email, note you'll be agreeing to the ToS.
email: [email protected]
# Pick your node version
nodejs_version: 20
# If you have an SSH key on your server for the root user, you don't need this.
ansible_ssh_pass: "secret"
# List of files and folders to copy to the server on deploy.
# Change this to be the files your node app needs to run.
# Example set up for a remix.run indie stack app.
deploy_files:
- src: ../prisma/migrations
dest: /home/{{ domain }}/prisma/
- src: ../prisma/schema.prisma
dest: /home/{{ domain }}/prisma/schema.prisma
- src: ../build/
dest: /home/{{ domain }}/build
- src: ../public/
dest: /home/{{ domain }}/public
- src: ../.env
dest: /home/{{ domain }}/
- src: ../.npmrc
dest: /home/{{ domain }}/
- src: ../package.json
dest: /home/{{ domain }}/
- src: ../package-lock.json
dest: /home/{{ domain }}/
- src: ../LICENSE.md
dest: /home/{{ domain }}/
- src: ../README.md
dest: /home/{{ domain }}/
```
Now you're ready to use ansible in your project.

0 comments on commit 11df0d3

Please sign in to comment.