From ad237b121bc579f3007db444711aaca435e5f331 Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Fri, 20 May 2022 15:47:14 -0500 Subject: [PATCH] fix mor formatting in read me --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 59bf5d5..85c3e85 100644 --- a/README.md +++ b/README.md @@ -205,17 +205,19 @@ res We will also need to copy the `CDServer.sqlite` database file from the server to the `~/NexusDashboard/app/luclient/res` folder Once the file is moved over, you will need to rename it to `cdclient.sqlite` -`mv ~/NexusDashboard/app/luclient/res/CDServer.sqlite ~/NexusDashboard/app/luclient/res/cdclient.sqlite` +```bash +mv ~/NexusDashboard/app/luclient/res/CDServer.sqlite ~/NexusDashboard/app/luclient/res/cdclient.sqlite +``` ##### Remaining Setup Run the following commands one at a time - -`cd ~/NexusDashboard` -`pip install -r requirements.txt` -`pip install gunicorn` -`flask db upgrade` - +```bash +cd ~/NexusDashboard +pip install -r requirements.txt +pip install gunicorn +flask db upgrade +``` ##### Running the site You can run the site with `gunicorn -b :8000 -w 4 wsgi:app`