2025.04.03 (๋ชฉ)

โœจ GPT์˜ ์š”์•ฝ ใ€€

Flutter Web + Django ์กฐํ•ฉ์œผ๋กœ ๊ธฐ์ˆ  ์Šคํƒ์„ ์ „ํ™˜ํ•˜๊ณ , ์ „์ฒด ๊ฐœ๋ฐœ ๋กœ๋“œ๋งต๊ณผ ์˜์–ด ๊ธฐ๋ฐ˜ ๊ฐœ๋ฐœ ํ™˜๊ฒฝ์„ ์ •๋ฆฝํ•œ ํ•˜๋ฃจ.

๐Ÿš€ Roadmap

Step-by-step To-Do List for Phase 1โ€“4 โ€” covering:

  1. ๐Ÿง  Project planning, tech stack selection, and domain purchase
  2. ๐Ÿ› ๏ธ Flutter Web build + Django static integration (local dev)
  3. ๐Ÿ”— Basic trigger API implementation
  4. ๐ŸŒ VPS deployment, Nginx setup, and secure domain serving

โœ… PHASE 1 โ€” Initial Planning & Strategic Decisions

  • ๐Ÿง  Define project scope & security strategy
    • Target audience: undocumented North Korean defectors living in China
    • Objective: provide a secure, disguised, browser-based communication tool
    • UX strategy: mimic a calculator interface to conceal real functionality
  • ๐Ÿค– Choose AI-assisted development approach
    • Use GPT-4o and o1 to assist with design and implementation
    • Apply a โ€œVibe Codingโ€ workflow โ€” using natural language and iterative prototyping with AI
  • โš™๏ธ Choose tech stack
    • Frontend: Flutter Web (for a polished, app-like UI disguised as a calculator)
    • Backend: Django + Django REST Framework (for structured APIs, built-in admin, and security)
    • Deployment: Single VPS container serving both Flutter static files and Django API
  • ๐ŸŒ Purchase disguise domain
    • Domain: ___.net
    • Purpose: plausible calculator utility appearance
    • Price: โ‚ฉ18,000/year via Korean registrar

โœ… PHASE 2 โ€” Local Development: Flutter Web + Django Integration

๐Ÿ”ง 1. Project Environment Setup

  • ๐Ÿงฑ Create Django project
    • django-admin startproject stealthcore .
  • โš™๏ธ Create Django app (for API)
    • python manage.py startapp api
  • ๐Ÿงฉ Add 'api' and 'rest_framework' to INSTALLED_APPS
  • ๐Ÿ Create virtual environment and install dependencies
    • python -m venv venv && source venv/bin/activate
    • pip install django djangorestframework whitenoise

๐Ÿ› ๏ธ 2. Flutter Web Build

  • ๐Ÿ’ป Initialize Flutter app
    • flutter create ____web
    • Replace default UI with a TextField and Send button
  • ๐Ÿงช Send input via http.post() to /api/check-trigger/
  • ๐Ÿ”จ Build Web output
    • flutter build web
  • ๐Ÿ“ Move build files
    • Create frontend_static/ folder in Django root
    • cp -r build/web/* frontend_static/

โš™๏ธ 3. Django Static File Serving

  • ๐Ÿงท Update settings.py:

    STATIC_URL = '/static/'
    STATICFILES_DIRS = [ BASE_DIR / 'frontend_static' ]
    
  • (Optional) Enable WhiteNoise
    • Add 'whitenoise.middleware.WhiteNoiseMiddleware' to MIDDLEWARE
  • ๐ŸŽ›๏ธ Copy build/web/index.html to templates/index.html
  • ๐Ÿ› ๏ธ Fix asset paths in index.html:

    <script src="/static/main.dart.js"></script>
    

๐Ÿ”— 4. Connect Flutter to Django

  • ๐Ÿงช Create /api/check-trigger/ endpoint
    • Accepts POST { input: "..." }
    • Returns { status: "success" } if input is '1004'
  • ๐Ÿ” Ensure no trigger strings exist in frontend source
  • ๐Ÿงช Confirm frontend integration with http.post(...)

โœ… PHASE 3 โ€” VPS Deployment (Vultr)

๐Ÿ›’ 1. Server Setup

  • Create a Vultr instance (Ubuntu 22.04, 1GB RAM)
  • ๐Ÿ”‘ Set up SSH access (ssh root@<ip>)
  • ๐Ÿ“ฆ Install dependencies:
    • sudo apt update && sudo apt upgrade
    • sudo apt install python3 python3-pip nginx git
    • sudo apt install certbot python3-certbot-nginx

๐Ÿš€ 2. Deploy Django

  • Upload your project (scp or git clone)
  • Set up virtual environment
    • python3 -m venv venv && source venv/bin/activate
    • pip install -r requirements.txt
  • ๐Ÿ”ซ Install and test Gunicorn
    • pip install gunicorn
    • gunicorn stealthcore.wsgi:application

๐ŸŒ 3. Serve with Nginx

  • Create Nginx config:

    server {
        listen 80;
        server_name ___.net;
    
        location /static/ {
            alias /home/youruser/project/frontend_static/;
        }
    
        location / {
            proxy_pass http://127.0.0.1:8000;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
        }
    }
    
  • ๐Ÿ” Enable HTTPS with Letโ€™s Encrypt
    • sudo certbot --nginx -d ___.net
  • ๐Ÿ”„ Restart Nginx:
    • sudo systemctl restart nginx

โœ… PHASE 4 โ€” Final Testing & Hardening

  • ๐Ÿ’ป Visit https://___.net
    • Confirm calculator UI loads successfully
  • ๐Ÿ” Enter '1004' in Flutter input and send
    • Django should respond with { "status": "success" }
  • ๐Ÿงช Test invalid input returns denial message

โœ… Final Notes

  • ๐Ÿงผ Remove all sensitive logic from frontend
  • ๐Ÿ”’ Protect future API endpoints with session token validation
  • ๐ŸงŠ Polish disguise: update app icon, page title, and add fake utility elements
  • ๐Ÿง  Write internal docs (deploy.md) for repeatable deployments

๐Ÿ’ญ ์ผ๊ธฐ

๋‹ค์Œ๊ณผ ๊ฐ™์€ ํฐ ๋ณ€ํ™”๊ฐ€ ์žˆ์—ˆ๋‹ค.

  • Flutter Web(Frontend) + Django(Backend)๋กœ ๋…ธ์„ ์„ ๋ณ€๊ฒฝํ–ˆ๋‹ค.
    • ์•ž์œผ๋กœ๋„ ์•ฑ์„ ๊ฐœ๋ฐœํ•  ๋•Œ ์œ„์™€ ๊ฐ™์€ ์กฐํ•ฉ์œผ๋กœ ์ญ‰ ๋ฐ€๊ณ  ๋‚˜๊ฐˆ ์ƒ๊ฐ์ด๊ธฐ ๋•Œ๋ฌธ.
    • ๊ทธ๋ฆฌ๊ณ  ๋‘˜ ๋‹ค ์‚ฌ์šฉํ•ด๋ณธ ๊ฒฝํ—˜์ด ์žˆ๋Š” ํ”„๋ ˆ์ž„์›Œํฌ์ด๊ธฐ์— ํ›จ์”ฌ ๋น ๋ฅธ ์ƒ์‚ฐ์„ฑ์„ ๊ธฐ๋Œ€ํ•  ์ˆ˜ ์žˆ๊ธฐ ๋•Œ๋ฌธ.
  • ๋ชจ๋“  Documentation๊ณผ Comment์™€ Commit Message๋Š” ์˜์–ด๋กœ ์ž‘์„ฑํ•˜๊ธฐ๋กœ ๊ฒฐ์ •ํ–ˆ๋‹ค.
    • ํ”„๋กฌํ”„ํŠธ๋ฅผ ์˜์–ด๋กœ ์ž‘์„ฑํ•˜๋ฉด ์กฐ๊ธˆ์ด๋‚˜๋งˆ ์„ฑ๋Šฅ ๊ฐœ์„ ์„ ๊ธฐ๋Œ€ํ•  ์ˆ˜ ์žˆ๊ธฐ ๋•Œ๋ฌธ.
    • ์˜จ ์„ธ์ƒ์˜ ์ตœ์‹  ์ง€์‹์€ ๋Œ€๋ถ€๋ถ„ ์˜์–ด๋กœ ๋‹ค๋ฃจ์–ด์ง€๊ธฐ ๋•Œ๋ฌธ.
    • ์˜์–ด๋ฅผ ์ž๊พธ ์‚ฌ์šฉํ•˜๋Š” ๋ฒ„๋ฆ‡์„ ๋“ค์—ฌ๋†”์•ผ ์˜์–ด๊ฐ€ ๋” ์ต์ˆ™ํ•ด์ง€๊ธฐ ๋•Œ๋ฌธ.
  • Git Commit Message Convention์€ ๋ฐ˜๋“œ์‹œ ๊ฐœ๋ฐœ ์—…๊ณ„ ํ‘œ์ค€ ํฌ๋งท์„ ๋”ฐ๋ฅด๊ธฐ๋กœ ํ–ˆ๋‹ค.
    • from

      * 21adba0 25.04.03 Thu <Hyuk Min> Chore | README.md: Add more details to roadmap
      
    • to

      * 21adba0 25.04.03 Thu <Hyuk Min> docs(README): add more details to roadmap
      
    • ํ‰์ƒ 1์ธ ๊ฐœ๋ฐœ์ž๋กœ ์‚ด ๊ฑฐ ์•„๋‹ˆ๋ผ๋ฉด, ์—…๊ณ„ ํ‘œ์ค€์„ ๋”ฐ๋ฅด๋Š” ์Šต๊ด€์„ ๋ฏธ๋ฆฌ ๋“ค์—ฌ๋†“๋Š” ๊ฒŒ ๋งž๊ธฐ ๋•Œ๋ฌธ.
    • ๋‚˜์ค‘์— Change log ๊ด€๋ จ ํ”„๋กœ๊ทธ๋žจ์„ ์‚ฌ์šฉํ•˜๊ฒŒ ๋˜๋ฉด ํ‘œ์ค€ ํฌ๋งท์ด์–ด์•ผ ํŒŒ์‹ฑ์ด ๋  ๊ฒƒ์ด๊ธฐ ๋•Œ๋ฌธ.

์ผ๋‹จ ๋กœ๋“œ๋งต ์ž์ฒด๋งŒ ๋ณด๋ฉด ์ถฉ๋ถ„ํžˆ ๋”ฐ๋ผํ•˜๊ธฐ ์ข‹์„ ๋งŒํ•œ ๊ฐ€์ด๋“œ๋ผ์ธ์ด ๋ฝ‘ํžŒ ๊ฒƒ ๊ฐ™๋‹ค.

๋‚ด์ผ ๊ณ„์† GPT ํ”ผ๋“œ๋ฐฑ ๋ฐ›์•„์„œ ๋‹ค๋“ฌ์€ ๋’ค์—, ๊ทธ๋Œ€๋กœ ๋”ฐ๋ผํ•ด๋ด์•ผ๊ฒ ๋‹ค.

์นดํ…Œ๊ณ ๋ฆฌ: ,

์ตœ๊ทผ ์ˆ˜์ •์ผ:

๋Œ“๊ธ€ ๋‚จ๊ธฐ๊ธฐ