From 632407ab9bb1573dc2832b13157318300925b919 Mon Sep 17 00:00:00 2001 From: paulheider Date: Wed, 8 Mar 2017 12:59:17 -0500 Subject: [PATCH] fixed markdown formatting errors in README.md My markdown-fu is a little rusty. I switched the link ordering and got my spaces wrong in the lists. --- README.md | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 98d572a..aa059e4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ShinyBudgetAnalysis =================== -A [https://shiny.rstudio.com](Shiny app) ([https://www.r-project.org](R)-based dashboard) that gives insight into your [https://www.gnucash.org/](GnuCash) budget habits over time. +A [Shiny app](https://shiny.rstudio.com) ([R](https://www.r-project.org)-based dashboard) that gives insight into your [GnuCash](https://www.gnucash.org/) budget habits over time. Configuration @@ -10,27 +10,21 @@ Configuration Running this Shiny app requires a few configuration steps. 1. Download or clone this code to `$SBA_DIR` (whereever you want that to be): - ```bash export SBA_DIR=/path/to/parent/directory/ShinyBudgetAnalysis cd $SBA_DIR - ''' - + ``` 2. Export your data from GnuCash - - a. `File` -> `Export` -> `Export Transactions to CSV` - b. Click `Forward` (Use the default settings for "Quotes" and "Separators") - c. Select the `Expenses` radio button - d. Click on `Expenses` in the box below the radio buttons and then click `Select Subaccounts` - e. Choose a date range (optional) - f. Click `Forward` - g. Save the `.csv` file in `$SBA_DIR/data` - + 1. `File` -> `Export` -> `Export Transactions to CSV` + 2. Click `Forward` (Use the default settings for "Quotes" and "Separators") + 3. Select the `Expenses` radio button + 4. Click on `Expenses` in the box below the radio buttons and then click `Select Subaccounts` + 5. Choose a date range (optional) + 6. Click `Forward` + 7. Save the `.csv` file in `$SBA_DIR/data` 3. Find all the `CHANGEME` entries in the R files and update them with your preferred values - 4. Launch the Shiny server from within your favorite R shell or program - ```R ## Start the server and automatically launch my default browser to show the app runApp( "$SBA_DIR" ) @@ -40,5 +34,5 @@ Running this Shiny app requires a few configuration steps. ## As above but I'll open the app myself in an browser runApp( "$SBA_DIR" , display.mode = "showcase" , launch.browser = FALSE ) - ''' + ```