Initial commit: abyssVpn project

- Tauri desktop app (apps/desktop)
- Python Django API service (services/api)
- Deployment scripts and docs
This commit is contained in:
arthur_chen
2026-05-15 09:06:10 +08:00
commit f69efb67ad
146 changed files with 18039 additions and 0 deletions
@@ -0,0 +1,59 @@
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = []
operations = [
migrations.CreateModel(
name="User",
fields=[
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
("feishu_open_id", models.CharField(max_length=128, unique=True)),
("email", models.EmailField(blank=True, max_length=254)),
("name", models.CharField(blank=True, max_length=128)),
(
"status",
models.CharField(
choices=[("active", "Active"), ("disabled", "Disabled")],
default="active",
max_length=16,
),
),
("created_at", models.DateTimeField(auto_now_add=True)),
("updated_at", models.DateTimeField(auto_now=True)),
],
),
migrations.CreateModel(
name="OAuthState",
fields=[
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
("state", models.CharField(max_length=128, unique=True)),
("used_at", models.DateTimeField(blank=True, null=True)),
("expires_at", models.DateTimeField()),
("created_at", models.DateTimeField(auto_now_add=True)),
],
),
migrations.CreateModel(
name="LoginCode",
fields=[
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
("code", models.CharField(max_length=128, unique=True)),
("used_at", models.DateTimeField(blank=True, null=True)),
("expires_at", models.DateTimeField()),
("created_at", models.DateTimeField(auto_now_add=True)),
(
"user",
models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
related_name="login_codes",
to="accounts.user",
),
),
],
),
]