-
-
Notifications
You must be signed in to change notification settings - Fork 505
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f40b27f
Showing
136 changed files
with
16,023 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Question template | ||
about: Ask if it is not clear that it is a bug | ||
title: '' | ||
labels: question | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Docker Image CI | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
alireza7/s-ui | ||
ghcr.io/alireza0/s-ui | ||
tags: | | ||
type=ref,event=branch | ||
type=ref,event=tag | ||
type=pep440,pattern={{version}} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
|
||
- name: Login to GHCR | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: true | ||
platforms: linux/amd64,linux/arm64/v8 | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Release S-UI | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
platform: [amd64, arm64, arm] | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
|
||
- name: Setup Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Install dependencies for arm64 and arm | ||
if: matrix.platform == 'arm64' || matrix.platform == 'arm' | ||
run: | | ||
sudo apt-get update | ||
sudo apt install gcc-aarch64-linux-gnu | ||
if [ "${{ matrix.platform }}" == "arm" ]; then | ||
sudo apt install gcc-arm-linux-gnueabihf | ||
fi | ||
- name: Build frontend | ||
run: | | ||
cd frontend | ||
npm install | ||
npm run build | ||
cd .. | ||
mv frontend/dist backend/web/html | ||
- name: Set evironments | ||
run: | | ||
export CGO_ENABLED=1 | ||
export GOOS=linux | ||
export GOARCH=${{ matrix.platform }} | ||
if [ "${{ matrix.platform }}" == "arm64" ]; then | ||
export CC=aarch64-linux-gnu-gcc | ||
elif [ "${{ matrix.platform }}" == "arm" ]; then | ||
export CC=arm-linux-gnueabihf-gcc | ||
fi | ||
- name: Build sing-box | ||
run: | | ||
git clone -b v1.8.5 https://github.com/SagerNet/sing-box | ||
cd sing-box | ||
go build -tags with_v2ray_api,with_clash_api,with_grpc,with_quic,with_ech -o sing-box ./cmd/sing-box | ||
cd .. | ||
- name: Build s-ui | ||
run: | | ||
cd backend | ||
go build -o ../sui main.go | ||
cd .. | ||
mkdir s-ui | ||
cp sui s-ui/ | ||
cp s-ui.service s-ui/ | ||
cp sing-box.service s-ui/ | ||
mkdir s-ui/bin | ||
cp sing-box/sing-box s-ui/bin/ | ||
cp runSingbox.sh s-ui/bin/ | ||
- name: Package | ||
run: tar -zcvf s-ui-linux-${{ matrix.platform }}.tar.gz s-ui | ||
|
||
- name: Upload | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref }} | ||
file: s-ui-linux-${{ matrix.platform }}.tar.gz | ||
asset_name: s-ui-linux-${{ matrix.platform }}.tar.gz | ||
prerelease: true | ||
overwrite: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.DS_Store | ||
dist/ | ||
release/ | ||
backup/ | ||
bin/ | ||
db/ | ||
sui | ||
main | ||
tmp | ||
.sync* | ||
*.tar.gz | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
*.log* | ||
.cache | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM node:alpine as front-builder | ||
WORKDIR /app | ||
COPY frontend/ ./ | ||
RUN npm install && npm run build | ||
|
||
FROM golang:1.21-alpine AS backend-builder | ||
WORKDIR /app | ||
ARG TARGETARCH | ||
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE" | ||
ENV CGO_ENABLED=1 | ||
RUN apk --no-cache --update add build-base gcc wget unzip | ||
COPY backend/ ./ | ||
COPY --from=front-builder /app/dist/ /app/web/html/ | ||
RUN go build -o sui main.go | ||
|
||
FROM alpine | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
ENV TZ=Asia/Tehran | ||
WORKDIR /app | ||
RUN apk add --no-cache --update ca-certificates tzdata | ||
COPY --from=backend-builder /app/sui /app/ | ||
VOLUME [ "s-ui" ] | ||
CMD [ "./sui" ] |
Oops, something went wrong.