Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ cd ~/vagrant/ansible
ansible-playbook vagrant.yml
```

## Development Quickstart Option 2 (virtualenv)
## Development Quickstart get up and running 'as is' Option 2 (virtualenv)

```
mkvirtualenv pythonkc
mkvirtualenv --no-site-packages --distribute pythonkc
git clone [email protected]:pythonkc/pythonkc.com.git
cd pythonkc.com/pythonkc_site
pip install -r requirements/project.txt
Expand All @@ -35,6 +35,16 @@ python manage.py runserver

Profit! $$$

## For upgrading to Python3 Development Option 3 (virtualenv)

```
mkvirtualenv pythonkc -p `which python3`
git clone [email protected]:pythonkc/pythonkc.com.git
cd pythonkc.com/pythonkc_site
pip install -r requirements/project.txt
python manage.py runserver
```

## More Detailed Instructions

See: docs/local_development
3 changes: 1 addition & 2 deletions pythonkc_site/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ <h1>POWERED BY</h1>
<article>
<h1>FOLLOW US</h1>
<ul class="follow">
<li><a href="https://convore.com/pythonkc/">Convore</a></li>
<li><a href="http://groups.google.com/group/pythonkc/">Google Group</a></li>
<li><a href="http://www.linkedin.com/groups/PythonKC/">LinkedIN</a></li>
<li><a href="http://www.meetup.com/pythonkc/">Meetup</a></li>
Expand All @@ -142,7 +141,7 @@ <h1>FOLLOW US</h1>
</section>
<section>
<div id="contact-form">
<form action="{% url 'home' %}" method="post"
<form action="" method="post"
enctype="application/x-www-form-urlencoded"
class="contact-form">
{% csrf_token %}
Expand Down