├── .flaskenv ├── .gitattributes ├── .idea ├── .gitignore ├── dataSources.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── web2.iml ├── README.md ├── app.db ├── app ├── __init__.py ├── errors.py ├── models.py ├── routes.py ├── static │ ├── css │ │ ├── mdui.css │ │ ├── mdui.min.css │ │ ├── mdui.min.css.map │ │ └── prism.css │ ├── fonts │ │ └── roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.woff │ │ │ ├── Roboto-Black.woff2 │ │ │ ├── Roboto-BlackItalic.woff │ │ │ ├── Roboto-BlackItalic.woff2 │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-BoldItalic.woff │ │ │ ├── Roboto-BoldItalic.woff2 │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-LightItalic.woff │ │ │ ├── Roboto-LightItalic.woff2 │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-MediumItalic.woff │ │ │ ├── Roboto-MediumItalic.woff2 │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-RegularItalic.woff │ │ │ ├── Roboto-RegularItalic.woff2 │ │ │ ├── Roboto-Thin.woff │ │ │ ├── Roboto-Thin.woff2 │ │ │ ├── Roboto-ThinItalic.woff │ │ │ └── Roboto-ThinItalic.woff2 │ ├── icons │ │ └── material-icons │ │ │ ├── LICENSE.txt │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ ├── MaterialIcons-Regular.woff │ │ │ └── MaterialIcons-Regular.woff2 │ └── js │ │ ├── mdui.js │ │ ├── mdui.min.js │ │ ├── mdui.min.js.map │ │ └── prism.js ├── templates │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── config.html │ ├── index.html │ ├── log.html │ ├── others.html │ └── subscription.html └── v2rayControl │ └── vmess2json.py ├── config.py ├── config ├── supervisord.conf └── v2ray │ ├── config.json │ └── others.json ├── images ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── install.sh ├── install_test.sh ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 5c9c1cd1380a_v2ray_config.py │ └── 735546ec32c4_v2ray_config.py ├── requirements.txt ├── uninstall.sh └── v2rayClient.py /.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.flaskenv -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-language=python -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/web2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/.idea/web2.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/README.md -------------------------------------------------------------------------------- /app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app.db -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/errors.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/models.py -------------------------------------------------------------------------------- /app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/routes.py -------------------------------------------------------------------------------- /app/static/css/mdui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/css/mdui.css -------------------------------------------------------------------------------- /app/static/css/mdui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/css/mdui.min.css -------------------------------------------------------------------------------- /app/static/css/mdui.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/css/mdui.min.css.map -------------------------------------------------------------------------------- /app/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/css/prism.css -------------------------------------------------------------------------------- /app/static/fonts/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/LICENSE.txt -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Black.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Black.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-BlackItalic.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-BlackItalic.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-BoldItalic.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-BoldItalic.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-LightItalic.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-LightItalic.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-MediumItalic.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-MediumItalic.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-RegularItalic.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-RegularItalic.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-ThinItalic.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/fonts/roboto/Roboto-ThinItalic.woff2 -------------------------------------------------------------------------------- /app/static/icons/material-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/icons/material-icons/LICENSE.txt -------------------------------------------------------------------------------- /app/static/icons/material-icons/MaterialIcons-Regular.ijmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/icons/material-icons/MaterialIcons-Regular.ijmap -------------------------------------------------------------------------------- /app/static/icons/material-icons/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/icons/material-icons/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /app/static/icons/material-icons/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/icons/material-icons/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /app/static/js/mdui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/js/mdui.js -------------------------------------------------------------------------------- /app/static/js/mdui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/js/mdui.min.js -------------------------------------------------------------------------------- /app/static/js/mdui.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/js/mdui.min.js.map -------------------------------------------------------------------------------- /app/static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/static/js/prism.js -------------------------------------------------------------------------------- /app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/404.html -------------------------------------------------------------------------------- /app/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/500.html -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/config.html -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/log.html -------------------------------------------------------------------------------- /app/templates/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/others.html -------------------------------------------------------------------------------- /app/templates/subscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/templates/subscription.html -------------------------------------------------------------------------------- /app/v2rayControl/vmess2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/app/v2rayControl/vmess2json.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/config.py -------------------------------------------------------------------------------- /config/supervisord.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/v2ray/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/config/v2ray/config.json -------------------------------------------------------------------------------- /config/v2ray/others.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/config/v2ray/others.json -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/images/4.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/install.sh -------------------------------------------------------------------------------- /install_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/install_test.sh -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/5c9c1cd1380a_v2ray_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/migrations/versions/5c9c1cd1380a_v2ray_config.py -------------------------------------------------------------------------------- /migrations/versions/735546ec32c4_v2ray_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/migrations/versions/735546ec32c4_v2ray_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/requirements.txt -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | 2 | #!/bin/bash 3 | #coding=utf-8 4 | 5 | echo -e "删除下载下来的文件夹即可" -------------------------------------------------------------------------------- /v2rayClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoOne-hub/v2ray_client/HEAD/v2rayClient.py --------------------------------------------------------------------------------