install.md more

This commit is contained in:
Tristan Mahé 2018-06-29 12:15:10 -07:00
parent a80ff75d7e
commit d0c9b31b33

View File

@ -9,7 +9,7 @@ adduser plume
su - plume su - plume
cd /home/plume cd /home/plume
git clone https://github.com/Plume-org/Plume.git git clone https://github.com/Plume-org/Plume.git
curl https://sh.rustup.rs -sSf | sh -s -- --no-modify-path --default-toolchain nightly curl https://sh.rustup.rs -sSf | sh
cd Plume cd Plume
rustup toolchain install nightly rustup toolchain install nightly
rustup toolchain default nightly rustup toolchain default nightly
@ -20,6 +20,7 @@ cargo install diesel_cli --no-default-features --features postgres # we dont nee
## Now, if you want to run postgresql on the same server: ## Now, if you want to run postgresql on the same server:
```bash ```bash
service postgresql start
cargo run # this will configure and launch Plume on the server. cargo run # this will configure and launch Plume on the server.
``` ```
@ -58,6 +59,7 @@ DB_URL=postgres://plume:PASSWORD@DBSERVERIP:DBPORT/plume cargo run # the first l
# Caveats: # Caveats:
* Pgbouncer is not yet supported ( named transactions are used ). * Pgbouncer is not yet supported ( named transactions are used ).
* Rust nightly is a moving target, dependancies can break and sometimes you need to check a few versions to find the one working. * Rust nightly is a moving target, dependancies can break and sometimes you need to check a few versions to find the one working.
```bash ```bash