[๐งโ๐ป] Secret Messenger ๊ฐ๋ฐ ์ผ์ง #2: Flutter Web + Django, Roadmap, English
โจ GPT์ ์์ฝ ใ
Flutter Web + Django ์กฐํฉ์ผ๋ก ๊ธฐ์ ์คํ์ ์ ํํ๊ณ , ์ ์ฒด ๊ฐ๋ฐ ๋ก๋๋งต๊ณผ ์์ด ๊ธฐ๋ฐ ๊ฐ๋ฐ ํ๊ฒฝ์ ์ ๋ฆฝํ ํ๋ฃจ.
๐ Roadmap
Step-by-step To-Do List for Phase 1โ4 โ covering:
- ๐ง Project planning, tech stack selection, and domain purchase
- ๐ ๏ธ Flutter Web build + Django static integration (local dev)
- ๐ Basic trigger API implementation
- ๐ 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
-
Domain:
โ 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'
toINSTALLED_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
andSend
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/
-
Create
โ๏ธ 3. Django Static File Serving
-
๐งท Update
settings.py
:STATIC_URL = '/static/' STATICFILES_DIRS = [ BASE_DIR / 'frontend_static' ]
-
(Optional) Enable WhiteNoise
-
Add
'whitenoise.middleware.WhiteNoiseMiddleware'
toMIDDLEWARE
-
Add
-
๐๏ธ Copy
build/web/index.html
totemplates/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'
-
Accepts POST
- ๐ 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
orgit 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" }
-
Django should respond with
- ๐งช 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 ํผ๋๋ฐฑ ๋ฐ์์ ๋ค๋ฌ์ ๋ค์, ๊ทธ๋๋ก ๋ฐ๋ผํด๋ด์ผ๊ฒ ๋ค.
๋๊ธ ๋จ๊ธฐ๊ธฐ