# kylj **Repository Path**: fa0/kylj ## Basic Information - **Project Name**: kylj - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-05 - **Last Updated**: 2026-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 科研棱镜 - 图片转SVG平台 基于 Django + Django REST Framework 的图片转SVG服务。 ## 部署步骤 ### 1. 安装依赖 ```bash pip install -r requirements.txt ``` ### 2. 数据库迁移 ```bash python manage.py migrate ``` ### 3. 创建管理员账号 ```bash python manage.py createsuperuser ``` ### 4. 收集静态文件(生产环境) ```bash python manage.py collectstatic ``` ### 5. 启动服务 开发环境: ```bash python manage.py runserver ``` 生产环境(使用 gunicorn): ```bash pip install gunicorn gunicorn kylj.wsgi:application -b 0.0.0.0:8000 ``` ## 访问地址 - 前端首页:`http://localhost:8000/` - 管理后台:`http://localhost:8000/d2cc39f95fa0dbe/` ## 技术栈 - Python 3.10+ - Django 5.1+ - Django REST Framework - SQLite(默认)