Build your albumy website using flask, gunicorn and nginx.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
郭腾 1915eb1d37 删除 '.flaskenv' il y a 4 ans
Pipfile 上传文件至 '' il y a 4 ans
Pipfile.lock 上传文件至 '' il y a 4 ans
README.md 上传文件至 '' il y a 4 ans
requirements.txt 上传文件至 '' il y a 4 ans

README.md

部署该项目不应在root用户下进行,应用有root权限的普通用户进行。
此处用Rivenatte来代表root权限的普通用户。

系统:Centos 8
需开放5000,80端口

切换到Rivenatte:
    su Rivenatte;

更新:
    sudo yum update;
    sudo yum upgrade;

以防万一,确保已有gcc:
    sudo yum install gcc;

拉取项目:
    git clone http://106.75.225.141/guoteng/Albumy.git;
    cd Albumy;

部署:
    python3 -m venv env;(or python2 -m venv env)
    source env/bin/activate; (进入虚拟环境)
    pip install -r requirements.txt;
    可能会提醒更新pip,这个随意;

测试: