change update instructions

This commit is contained in:
David Todd 2019-05-27 02:32:02 -05:00
parent fab515ef31
commit 3647bfe04c
2 changed files with 6 additions and 4 deletions

View File

@ -20,6 +20,9 @@ uninstall:
update: update:
@echo 'noop' @echo 'noop'
@git submodule update --recursive --remote
@pip install -r requirements.txt
plugins
plugins: plugins:
@echo 'Creating symlinks for plugins' @echo 'Creating symlinks for plugins'

View File

@ -13,15 +13,14 @@ There's not really a whole lot here, but it contains all the posts and content;
1. Setup a virtualenv - `virtualenv venv` 1. Setup a virtualenv - `virtualenv venv`
1. Activate it - `source venv/bin/activate` 1. Activate it - `source venv/bin/activate`
1. Install dependencies into virtualenv - `pip install -r requirements.txt` 1. Install dependencies into virtualenv - `pip install -r requirements.txt`
1. Install the service and plugins - `sudo make install`
## Updating ## Updating
1. SSH into your server 1. SSH into your server
1. `cd c0de.dev-blog` 1. `cd c0de.dev-blog`
1. Activate virtualenv - `source venv/bin/activate` 1. `source venv/bin/activate`
1. Install/Update plugins - `git submodule update --recursive --remote` 1. `make update`
1. Install dependencies into virtualenv - `pip install -r requirements.txt`
## TODO ## TODO