Git Product home page Git Product logo

acloud's Introduction

一、DEV配置

cd aCloud

virtualenv venv

venv\Scripts\activate

pip install -r requirement.txt

venv\Scripts\deactivate

二、第三方库说明

1、服务器端发送Http请求 requests

2、加密解密 rsa

3、验证码识别 pytesseract、PIL(Pillow)、tesseract-ocr

tesseract路径配置:

CHANGE THIS IF TESSERACT IS NOT IN YOUR PATH, OR IS NAMED DIFFERENTLY

tesseract_cmd = 'tesseract'

4、sqlacodegen用法

sqlacodegen postgresql:///some_local_db

sqlacodegen mysql://user:password@localhost/dbname

sqlacodegen sqlite:///database.db

sqlacodegen --help

如:venv\Scripts\sqlacodegen mysql://root:[email protected]/ecshop > dbmodel.py

三、部署

Nginx configuration

server {

listen 80;

server_name you-domain;

location / {

fastcgi_pass 127.0.0.1:7777;

root /var/path-to-chili/;

fastcgi_param REQUEST_URI $request_uri;

fastcgi_param REQUEST_METHOD $request_method;

fastcgi_param QUERY_STRING $query_string;

fastcgi_param CONTENT_TYPE $content_type;

fastcgi_param CONTENT_LENGTH $content_length;

fastcgi_param SERVER_ADDR $server_addr;

fastcgi_param SERVER_PORT $server_port;

fastcgi_param SERVER_NAME $server_name;

fastcgi_param SERVER_PROTOCOL $server_protocol;

fastcgi_param PATH_INFO $fastcgi_script_name;

fastcgi_param REMOTE_ADDR $remote_addr;

fastcgi_param REMOTE_PORT $remote_port;

fastcgi_pass_header Authorization;

fastcgi_intercept_errors off;

}

}

acloud's People

Contributors

zhengwen369 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.