Skip to content

To-Do List web application built with Django. It helps users organize their daily tasks efficiently by providing a clean interface to add, edit, and track tasks

Notifications You must be signed in to change notification settings

LifelongWay/TaskTracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚀 Setup: LocalTunnel Quick Guide

Expose your local server (e.g., Django) publicly with LocalTunnel 🔗


1️⃣ Run your server

python manage.py runserver

2️⃣ Start LocalTunnel

lt --port 8000

Get a URL like: https://your-tunnel-name.loca.lt


3️⃣ Update Django settings ⚙️

Add your tunnel host to ALLOWED_HOSTS in settings.py:

ALLOWED_HOSTS = ['your-tunnel-name.loca.lt', 'localhost', '127.0.0.1']

Important: You also need to add your tunnel URL to CSRF_TRUSTED_ORIGINS to avoid CSRF verification errors:

CSRF_TRUSTED_ORIGINS = [
    'https://your-tunnel-name.loca.lt',  # <--- Add your tunnel URL here
]

4️⃣ Get Tunnel Password 🔑

Run on same machine:

curl https://loca.lt/mytunnelpassword

Or visit: https://loca.lt/mytunnelpassword

This is your public IP and required to access the tunnel.


5️⃣ Share 🔄

Share the URL + password only with trusted users. Visitors must enter the password to connect.


⚠️ Stop tunnel with Ctrl+C when done. Only share with trusted people!


Questions? Open an issue! 📬

About

To-Do List web application built with Django. It helps users organize their daily tasks efficiently by providing a clean interface to add, edit, and track tasks

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published