update setup.txt, fix protocol
This commit is contained in:
File diff suppressed because one or more lines are too long
37
setup.txt
37
setup.txt
@@ -15,13 +15,40 @@ To fully host the client generator yourself, you will need to following:
|
|||||||
a) environment variables:
|
a) environment variables:
|
||||||
GHUSER="your github username"
|
GHUSER="your github username"
|
||||||
GHBEARER="your fine-graned access token"
|
GHBEARER="your fine-graned access token"
|
||||||
b) github secrets:
|
b) github secrets (setup on your github account for your rdgen repo):
|
||||||
GENURL="example.com:8083"
|
GENURL="example.com:8083" | this is the domain and port that your are running rdgen on, needs to be accesible on the internet
|
||||||
GEN_FTP_SERVER="ftp.example.com"
|
GEN_FTP_SERVER="ftp.example.com" | you need an ftp server for the github actions to upload to
|
||||||
GEN_FTP_USER="username"
|
GEN_FTP_USER="username" | username for your ftp server where the exe/deb/rpm/apk files will be uploaded
|
||||||
GEN_FTP_PASSWORD="password"
|
GEN_FTP_PASSWORD="password" | password for your ftp user
|
||||||
c) optional github secrets (for signing the code):
|
c) optional github secrets (for signing the code):
|
||||||
WINDOWS_PFX_BASE64
|
WINDOWS_PFX_BASE64
|
||||||
WINDOWS_PFX_PASSWORD
|
WINDOWS_PFX_PASSWORD
|
||||||
WINDOWS_PFX_SHA1_THUMBPRINT
|
WINDOWS_PFX_SHA1_THUMBPRINT
|
||||||
|
|
||||||
|
To run rdgen on your server:
|
||||||
|
|
||||||
|
#open to the directory you want to install rdgen (change /opt to wherever you want)
|
||||||
|
cd /opt
|
||||||
|
|
||||||
|
#clone your rdgen repo, change bryangerlach to your github username
|
||||||
|
git clone https://github.com/bryangerlach/rdgen.git
|
||||||
|
|
||||||
|
#open the rdgen directory
|
||||||
|
cd rdgen
|
||||||
|
|
||||||
|
#setup a python virtual environment called rdgen
|
||||||
|
python -m venv rdgen
|
||||||
|
|
||||||
|
#activate the python virtual environment
|
||||||
|
source rdgen/bin/activate
|
||||||
|
|
||||||
|
#install the python dependencies
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
#setup the database
|
||||||
|
python manage.py manage.py migrate
|
||||||
|
|
||||||
|
#run the server, change 8000 with whatever you want
|
||||||
|
python manage.py runserver 0.0.0.0:8000
|
||||||
|
|
||||||
|
#open your web browser to yourdomain:8000
|
||||||
Reference in New Issue
Block a user