Skip to content

swasdas/TravelTales

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

8 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

TravelTales

๐ŸŒโœจ TravelTales is a community-driven travel blog platform built with Django ๐Ÿ, where users can share stories ๐Ÿ“, photos ๐Ÿ“ธ, and experiences ๐ŸŒ† from cities around the globe like Tokyo ๐Ÿ‡ฏ๐Ÿ‡ต, Mumbai ๐Ÿ‡ฎ๐Ÿ‡ณ, Sydney ๐Ÿ‡ฆ๐Ÿ‡บ, and more.

Tech-Stack: Python, Django Framework, HTML, CSS, JavaScript

UserGuide.mp4
APIs-Interactions.mp4

Useful Commands

python --version
python -m venv venv  # create venv in project folder (Once) 
venv\Scripts\activate
python manage.py runserver
python manage.py startapp <feature-appname>

#### After changing model -> need to migrate
python manage.py makemigrations
python manage.py migrate

#### shell for ORM based DB access and queries
python manage.py shell

#### you can run these commands (varies as per project - posts project below)
from posts.models import Post
p = Post()
p.title = "My first post"
p.save()
Post.objects.all()

#### create admin username & pw ~ superuser 
python manage.py createsuperuser

#### for PRODUCTION -> make changes in settings.py & urls.py in project folder
python manage.py collectstatic

About

๐ŸŒโœจ TravelTales is a community-driven travel blog platform built with Django ๐Ÿ, where users can share stories ๐Ÿ“, photos ๐Ÿ“ธ, and experiences ๐ŸŒ† from cities around the globe like Tokyo ๐Ÿ‡ฏ๐Ÿ‡ต, Mumbai ๐Ÿ‡ฎ๐Ÿ‡ณ, Sydney ๐Ÿ‡ฆ๐Ÿ‡บ, and more.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors