jbinney / wedding

Web app for my wedding site

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Joe and Bistra's Wedding Site

This is a simple Django app for our wedding site, which includes an RSVP system and some basic informational pages. This site uses virtualenvwrapper to manage Python dependencies, Bootstrap for simple UI components and styling, and jQuery mostly just because it's a Bootstrap dependency ;)

Please feel free to fork this project for your own wedding site!

Setup

  1. Install pip (instructions here).

  2. Install virtualenvwrapper:

$ sudo pip install virtualenvwrapper

Note: You might need this workaround for OS X 10.11.

  1. Set up virtualenvwrapper:
  2. Add the following lines to your shell startup file:
```bash
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/projects # This should be where your cloned repos live
source /usr/local/bin/virtualenvwrapper.sh
```
  1. Reload the startup file (e.g., run source ~/.bashrc).

  2. Set up a virtualenv for this project:

$ mkvirtualenv wedding
  1. Install python dependencies into the virtualenv:
$ pip install -r requirements.txt
  1. Initialize the database:
$ ./manage.py migrate
  1. Run the web server:
$ ./manage.py runserver

You can now view the site at http://127.0.0.1:8000/.

About

Web app for my wedding site

License:MIT License


Languages

Language:HTML 57.7%Language:Python 39.0%Language:JavaScript 2.3%Language:CSS 1.0%