Hi Vincent,

If all you need is static pages, it sounds to me like you may want to look
at a static site generator like Pelican [1] or Jekyll. It makes it easy to
set up a template-based site, but keeps the content statically generated
(i.e., if you want to add a new blog post, you regenerate the whole site an
upload it). You won't have any support for form processing or anything
other than static pages, but it will get a no-frills site up quickly.

If it turns out down the line that you need form processing or dynamic
content (i.e., content stored in a database generating pages), then you can
look at converting to a Django-based site. Pelican uses jinja2 templates,
so converting those template from a static generator site to a dynamic
Django site shouldn't be too much effort.

Of course, if you're looking for a learning exercise, it certainly wouldn't
hurt to build a static site in Django. Whether that's worth the effort is
entirely up to you.

[1] http://getpelican.com
[2] http://jekyllrb.com

Yours,
Russ Magee %-)

On Sun, Jun 16, 2013 at 10:02 PM, Vincent Fulco <vful...@gmail.com> wrote:

> Fairly new to the framework and have been reading a ton of material.
>
> While I have found a couple of great git repos using Bootstrap with
> Django, I haven't found too many examples of dead simple sites other than
> some single page blogs.  I am working on an informational site with at most
> 5 pages and potentially a blog down the road for a customer (thinking S3,
> compressor, boto, etc. usage within).
>
> Do I even need to incorporate the PostgreSQL RDBMS at this juncture or
> should I set it up for future proofing purposes?  Django is most likely too
> feature packed for such a rudimentary project, yet using it is fulfilling a
> secondary role of giving me a learning stepping stone to a few more
> projects with greater complexity.  So I am not looking for other tools to
> use, just some mention of what I can safely do at this point (elimination
> wise) and still have a robust, well designed, responsive offering.
>
> TIA, V.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to