fix mor formatting in read me

This commit is contained in:
Aaron Kimbre 2022-05-20 15:47:14 -05:00
parent 4966d6b029
commit ad237b121b

View File

@ -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 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` 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 ##### Remaining Setup
Run the following commands one at a time Run the following commands one at a time
```bash
`cd ~/NexusDashboard` cd ~/NexusDashboard
`pip install -r requirements.txt` pip install -r requirements.txt
`pip install gunicorn` pip install gunicorn
`flask db upgrade` flask db upgrade
```
##### Running the site ##### Running the site
You can run the site with You can run the site with
`gunicorn -b :8000 -w 4 wsgi:app` `gunicorn -b :8000 -w 4 wsgi:app`