Some README updates.

This commit is contained in:
Dessalines 2019-08-21 21:09:46 -07:00
parent c86a1d339e
commit 512cde82ef
3 changed files with 9 additions and 10 deletions

View file

@ -68,7 +68,7 @@ Made with [Rust](https://www.rust-lang.org), [Actix](https://actix.rs/), [Infern
Make sure you have both docker and docker-compose(>=`1.24.0`) installed. Make sure you have both docker and docker-compose(>=`1.24.0`) installed.
``` ```bash
mkdir lemmy/ mkdir lemmy/
cd lemmy/ cd lemmy/
wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/docker-compose.yml wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/docker-compose.yml
@ -81,7 +81,7 @@ and goto http://localhost:8536
[A sample nginx config](/docker/prod/nginx.conf), could be setup with: [A sample nginx config](/docker/prod/nginx.conf), could be setup with:
``` ```bash
wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/nginx.conf wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/nginx.conf
# Replace the {{ vars }} # Replace the {{ vars }}
sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
@ -106,10 +106,10 @@ ansible-playbook lemmy.yml
### Docker Development ### Docker Development
``` ```bash
git clone https://github.com/dessalines/lemmy git clone https://github.com/dessalines/lemmy
cd lemmy/docker cd lemmy/docker/dev
./docker_update.sh # This pulls the newest version, builds and runs it ./docker_update.sh # This builds and runs it, updating for your changes
``` ```
and goto http://localhost:8536 and goto http://localhost:8536
@ -124,7 +124,7 @@ and goto http://localhost:8536
#### Set up Postgres DB #### Set up Postgres DB
``` ```bash
psql -c "create user lemmy with password 'password' superuser;" -U postgres psql -c "create user lemmy with password 'password' superuser;" -U postgres
psql -c 'create database lemmy with owner lemmy;' -U postgres psql -c 'create database lemmy with owner lemmy;' -U postgres
export DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy export DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
@ -132,7 +132,7 @@ and goto http://localhost:8536
#### Running #### Running
``` ```bash
git clone https://github.com/dessalines/lemmy git clone https://github.com/dessalines/lemmy
cd lemmy cd lemmy
./install.sh ./install.sh

2
docker/dev/docker_update.sh Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
docker-compose up -d --no-deps --build

View file

@ -1,3 +0,0 @@
#!/bin/sh
set -e
docker-compose -f dev/docker-compose.yml up -d --no-deps --build