bentford / djangoBlog

Yet another django blog I'm writing for educational purposes
benford.name
2 stars 0 forks source link

Push initial code (but figure out how to structure my repo) #1

Closed bentford closed 14 years ago

bentford commented 14 years ago

Trying to figure out how to structure my git repository. Currently, djangoBlog lives inside my django-website, which is under a git repo, but I do not wish to share the entire site code.

I guess I could nest a git repo inside another and ignore the nested directory.

bentford commented 14 years ago

Nesting will not work with my current folder structure:

/benford.name
  /blog
    urls.py
    views.py   #this references files in templates
    etc...
  /templates
bentford commented 14 years ago

Solution: move blog templates inside the blog folder.

Read docs to see if this is doable.

bentford commented 14 years ago

Done.