From 0e270fd391dd3a77389a2ac6f1a01205c5575191 Mon Sep 17 00:00:00 2001 From: Salar Rahmanian Date: Fri, 3 Mar 2017 13:41:45 -0500 Subject: [PATCH] Corrections to markdown from import --- ...ing-get-satisfaction-fastpass-with-laravel.md | 16 ++++++++-------- content/post/using-pyenv-for-python-projects.md | 14 +++++++------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/content/post/integrating-get-satisfaction-fastpass-with-laravel.md b/content/post/integrating-get-satisfaction-fastpass-with-laravel.md index 5e8cbac..d918292 100644 --- a/content/post/integrating-get-satisfaction-fastpass-with-laravel.md +++ b/content/post/integrating-get-satisfaction-fastpass-with-laravel.md @@ -19,19 +19,19 @@ Here is an overview of what is involved in getting your Laravel 4 apps authentic ## Install the Fastpass PHP SDK -** Create a folder to install the library in ** +*****Create a folder to install the library in** ``` $ mkdir app/lib $ mkdir app/lib/getsatisfaction ``` -** Download & untar/unzip the Fastpass PHP SDK** +**Download & untar/unzip the Fastpass PHP SDK** ``` cd app/lib/getsatisfaction wget "https://getsatisfaction.com/fastpass/php.tar.gz" tar -zxvf php.tar.gz . ``` -** Update ** *composer.json* ** adding the location of the library ** +**Update** *composer.json* **adding the location of the library** In the *autoload* section add the path *app/lib/getsatisfaction* ``` @@ -48,13 +48,13 @@ In the *autoload* section add the path *app/lib/getsatisfaction* }, ``` -** In the console run ** +**In the console run** ``` $ composer update $ php artisan dump-autoload ``` -** Create a configuration file (e.g. app/config/getsatisfaction.php ) to hold your API tokens for the Fastpass service ** +**Create a configuration file (e.g. app/config/getsatisfaction.php ) to hold your API tokens for the Fastpass service** ```php /dev/null; then eval "$(pyenv init -)"; fi @@ -33,14 +33,14 @@ if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init - ## Installing on Linux CentOS 7 ## -** Checkout from github ** +**Checkout from github** ``` $ git clone https://github.com/yyuu/pyenv.git ~/.pyenv $ git clone https://github.com/yyuu/pyenv-virtualenv.git ~/.pyenv/plugins/pyenv-virtualenv ``` -** Update your shell profile (.bashrc or .zshrc) adding the following to it (and restart your terminal) ** +**Update your shell profile (.bashrc or .zshrc) adding the following to it (and restart your terminal)** ``` $ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile @@ -51,26 +51,26 @@ $ echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile ## Using pyenv ## -** To install a new version of [Python][6] ** +**To install a new version of [Python][6]** ``` $ pyenv install $ pyenv rehash ``` -** To get a list of [Python][6] versions available ** +**To get a list of [Python][6] versions available** ``` $ pyenv install -l ``` -** To create a new virtual environment ** +**To create a new virtual environment** ``` $ pyenv virtualenv [pyenv-version] [virtualenv-name] ``` -** To use your new virtual environment within your project ** +**To use your new virtual environment within your project** 1. Change to your projects root directory 1. Run: