diff --git a/README.md b/README.md index d1f4166..eb03ac7 100644 --- a/README.md +++ b/README.md @@ -69,17 +69,16 @@ # Deployment > **NOTE: This tutorial assumes you have a working DLU server instance and** -> **some knowledge of Linux** +> **some knowledge of command line interfaces on your chosen platform** -**It is highly recommended to setup a reverse proxy via nginx or some other tool and use ssl to secure your nexus dashboard instance** - * [How to setup nginx](https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-as-a-reverse-proxy-on-ubuntu-22-04) - * [How to use certbot for ssl](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-22-04) +**It is highly recommended to setup a reverse proxy via Nginx or some other tool and use SSL to secure your Nexus Dashboard instance if you are going to be opening it up to any non-LANs** + * [How to setup Nginx](https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-as-a-reverse-proxy-on-ubuntu-22-04) + * [How to use certbot for SSL](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-22-04) ## Docker ```bash - docker run -d \ -e APP_SECRET_KEY='' \ -e APP_DATABASE_URI='mysql+pymysql://:@:/' \ @@ -89,7 +88,6 @@ docker run -d \ -v /path/to/unpacked/client:/app/luclient:rw \ -v /path/to/cachedir:/app/cache:rw \ aronwk/nexus-dashboard:latest - ``` * `/app/luclient` must be mapped to the location of an unpacked client @@ -106,37 +104,41 @@ Please Reference `app/settings_exmaple.py` to see all the variables * APP_DATABASE_URI (Must be provided) * Everything else is optional and has defaults -## Manual +## Manual Linux Installation Thanks to [HailStorm32](https://github.com/HailStorm32) for this manual install guide! + ### Setting Up The Environment -First you will want to install the following packages by executing the following commands +First you will want to install the following packages by executing the following commands presuming you are on a Debian based system. + `sudo apt-get update` + `sudo apt-get install -y python3 python3-pip sqlite3 git unzip libmagickwand-dev` > *Note: If you are having issues with installing `sqlite3`, change it to `sqlite`*
-Next we will clone the repository. You can clone it anywhere, but for the purpose of this tutorial, we will be cloning it to the home directory. +Next you will want to clone the repository. You can clone it anywhere, but for the purpose of this tutorial, we will be cloning it to the home directory.' +

-`cd` *make sure you are in the home directory* +Run `cd ~` to ensure that you are currently in the home directory then run the following command to clone the repository into our home directory `git clone https://github.com/DarkflameUniverse/NexusDashboard.git` -You should now have a directory called `NexusDashboard` +You should now have a directory called `NexusDashboard` present in your home directory ### Setting up Rename the example settings file `cp ~/NexusDashboard/app/settings_example.py ~/NexusDashboard/app/settings.py` -Now let's open the settings file we just created and configure some of the settings -`vim ~/NexusDashboard/app/settings.py` ->*Feel free to use any text editor you are more comfortable with instead of vim* +Now let's open the settings file we just created and configure some of the settings with nano as it is a simple text editor that is easy to use +`nano ~/NexusDashboard/app/settings.py` +>*Obviously you can replace this with a text editor of your choice, nano is just the most simple to use out of the ones available by default on most Linux distros*
-Inside this file is where you can change certain settings like user registration, email support and other things. In this tutorial I will only be focusing on the bare minimum to get up and running, but feel free to adjust what you would like +Inside this file is where you can change certain settings like user registration, email support and other things. In this tutorial we will only be focusing on the bare minimum to get up and running, but feel free to adjust what you would like to fit your needs. ->*Note: Enabling the email option will require further setup that is outside the scope of this tutorial* +>*Note: There are options in here that are related to email registration and password recovery among other features however those require extra setup not covered by this tutorial* The two important settings to configure are `APP_SECRET_KEY` and `APP_DATABASE_URI` @@ -180,7 +182,7 @@ Put the two folders in `~/NexusDashboard/app/luclient` Unzip the `brickdb.zip` in place `unzip brickdb.zip` -Remove the `.zip` after you have unzipped it +Remove the `.zip` file after you have unzipped it, you can do that with `rm brickdb.zip` In the `luclient` directory you should now have a file structure that looks like this @@ -207,14 +209,14 @@ 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` +Once the file is moved over, you will need to rename it to `cdclient.sqlite`, this can be done with the following command ```bash mv ~/NexusDashboard/app/luclient/res/CDServer.sqlite ~/NexusDashboard/app/luclient/res/cdclient.sqlite ``` ##### Remaining Setup -Run the following commands one at a time +To finish this, we will need to install the python dependencies and run the database migrations, simply run the following commands one at a time ```bash cd ~/NexusDashboard pip install -r requirements.txt @@ -222,11 +224,11 @@ pip install gunicorn flask db upgrade ``` ##### Running the site -You can run the site with +Once all of the above is complete, you can run the site with the command `gunicorn -b :8000 -w 4 wsgi:app` # Development -Please use [Editor Config](https://editorconfig.org/) +Please use [Editor Config](https://editorconfig.org/) to maintain a consistent coding style between different editors and different contributors. - * `flask run` to run local dev server + * `python3 -m flask run` to run a local dev server diff --git a/entrypoint.bat b/entrypoint.bat new file mode 100644 index 0000000..9e0119e --- /dev/null +++ b/entrypoint.bat @@ -0,0 +1,2 @@ +python3 -m flask db upgrade +python3 wsgi.py diff --git a/wsgi.py b/wsgi.py index 9096484..af30ac4 100644 --- a/wsgi.py +++ b/wsgi.py @@ -1,19 +1,23 @@ - +from sys import platform from app import create_app app = create_app() - @app.shell_context_processor def make_shell_context(): """Extend the Flask shell context.""" return {'app': app} +running_directly = __name__ == "__main__" +running_under_gunicorn = not running_directly and 'gunicorn' in __name__ and 'linux' in platform -if __name__ == '__main__': +# Configure development running +if running_directly: with app.app_context(): app.run(host='0.0.0.0') -else: + +# Configure production running +if running_under_gunicorn: import logging from logging.handlers import RotatingFileHandler gunicorn_logger = logging.getLogger('gunicorn.error') @@ -23,3 +27,7 @@ else: file_handler.setFormatter(formatter) app.logger.addHandler(file_handler) app.logger.setLevel(gunicorn_logger.level) + +# Error out if nothing has been setup +if not running_directly and not running_under_gunicorn: + raise RuntimeError('Unsupported WSGI server')