Skip to content

NathanQ/pythonkc.com

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PYTHONKC.COM WEBSITE

Files for the PythonKC.com website.

Development Quickstart Option 1 (vagrant)

vagrant plugin install vagrant-hostmanager
vagrant plugin install vagrant-hostsupdater
vagrant up

vagrant up will run provision.sh which runs ansible on the VM.

We've done this so you don't have to install ansible on your local machine.

If you'd prefer you can always ssh in and run/re-run the provisioner manually (the output is a little nicer this way):

vagrant ssh
cd ~/vagrant/ansible
ansible-playbook vagrant.yml

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

mkvirtualenv --no-site-packages --distribute pythonkc
git clone git@github.com:pythonkc/pythonkc.com.git
cd pythonkc.com/pythonkc_site
pip install -r requirements/project.txt
python manage.py runserver

Profit! $$$

For upgrading to Python3 Development Option 3 (virtualenv)

mkvirtualenv pythonkc -p `which python3`
git clone git@github.com: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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 42.4%
  • HTML 26.8%
  • CSS 23.4%
  • JavaScript 5.9%
  • Shell 1.5%