Difference between revisions of "PYTHONAPP"

From rbachwiki
Jump to navigation Jump to search
Line 1: Line 1:
==Karaoke app Deployment==
==Karaoke app Deployment==
 
== 1 Prerequisite Check ==
# ssh into the server
# ssh into the server
# verify what is installed
# verify what is installed
Line 7: Line 7:
  mysql --version
  mysql --version
  which certbot
  which certbot
# if certbot isn't installed
sudo apt update
sudo apt install certbot python3-certbot-apache -y


pip install flask pymysql cryptography gunicorn DBUtils
pip install flask pymysql cryptography gunicorn DBUtils

Revision as of 17:02, 21 April 2026

Karaoke app Deployment

1 Prerequisite Check

  1. ssh into the server
  2. verify what is installed
apache2 -v
python3 --version
mysql --version
which certbot
  1. if certbot isn't installed
sudo apt update
sudo apt install certbot python3-certbot-apache -y

pip install flask pymysql cryptography gunicorn DBUtils