Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kfields/pugsley

Python User Group Site with Django & Wagtail
https://github.com/kfields/pugsley

Last synced: 3 days ago
JSON representation

Python User Group Site with Django & Wagtail

Awesome Lists containing this project

README

        

# Pugsley

## Installation

1. Navigate to a directory somewhere where you keep your software projects:

cd projects

2. Clone the repository:

git clone https://github.com/kfields/pugsley.git

3. Navigate to the new directory which contains the repository.

cd pugsley

4. Create a Python 3 virtual environment called `env`:

python3 -m venv env

5. Activate the environment:

source env/bin/activate

6. Install required packages:

pip install -r requirements.txt

## Running the website

1. Activate the virtual environment, if not already active:

cd pugsley
source env/bin/activate

2. Start the Django web server:

$ ./dev