https://github.com/kfields/pugsley
Python User Group Site with Django & Wagtail
https://github.com/kfields/pugsley
Last synced: about 1 month ago
JSON representation
Python User Group Site with Django & Wagtail
- Host: GitHub
- URL: https://github.com/kfields/pugsley
- Owner: kfields
- Created: 2019-03-28T22:10:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T22:09:14.000Z (over 3 years ago)
- Last Synced: 2025-12-28T21:53:33.439Z (5 months ago)
- Language: Python
- Homepage:
- Size: 6.67 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
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