├── .github
└── workflows
│ └── php.yml
├── README.md
├── crawler.php
├── qrcode
├── hy2.png
├── mix.png
├── reality.png
├── ss.png
├── trojan.png
├── tuic.png
├── vless.png
├── vmess.png
└── warp.png
└── sub
├── hy2
├── mix
├── reality
├── ss
├── trojan
├── tuic
├── vless
└── vmess
/.github/workflows/php.yml:
--------------------------------------------------------------------------------
1 | name: "TVC"
2 |
3 | on:
4 | workflow_dispatch:
5 | push:
6 | branches: [ "main" ]
7 | schedule:
8 | - cron: '*/15 * * * *'
9 |
10 | jobs:
11 | build:
12 | runs-on: ubuntu-latest
13 | defaults:
14 | run:
15 | shell: bash -e {0}
16 | steps:
17 | - name: Checkout Code
18 | uses: actions/checkout@v2
19 | with:
20 | token: ${{ secrets.GITHUB_TOKEN }}
21 | env:
22 | NODE_VERSION: '20'
23 |
24 | - name: Setup PHP
25 | uses: shivammathur/setup-php@v2
26 | with:
27 | php-version: '8.0'
28 |
29 | - name: Execute PHP script
30 | run: php crawler.php
31 |
32 | - name: Configure Git
33 | run: |
34 | git config --global user.email "ircfspace@gmail.com"
35 | git config --global user.name "ircfspace"
36 |
37 | - name: Commit changes
38 | run: |
39 | git add -A
40 | git diff --cached --quiet || git commit -m "💡 Automatic update - $(TZ='Asia/Tehran' date '+%Y-%m-%d %H:%M')"
41 |
42 | - name: Push changes
43 | uses: ad-m/github-push-action@master
44 | with:
45 | github_token: ${{ secrets.GITHUB_TOKEN }}
46 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # V2ray Collector
2 |
3 | To use this project, simply import the subscription links into your preferred client. Ensure that your client supports at least SHADOWSOCKS, VLESS, VMESS, TROJAN, TUIC and HYSTERIA2.
4 |
5 |
6 |
7 | Powered by @Yebekhe (TVC)
8 |
9 |