Project

presspass

0.02
Repository is archived
No commit activity in last 3 years
No release in over 3 years
PressPass is a command-line tool that helps you do WordPress development. It lets you install the latest WordPress version on your local development machine and sets it up for usage with PHP and Pow so you can run it along side your Rails apps if you want to. It contains generation tools similar to the rails command for generating themes and plugins.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

PressPass

Making WordPress development as awesome. PressPass is one simple command to download and install a WordPress installation, and start a local webserver to start developing without any extra configuration fuzz.

Installing

PressPass is available as a gem:

gem install presspass

Usage

To generate a new installation of WordPress:

presspass new <app_name>

This will download the latest version of WordPress and install it into the <app_name> directory. It will also generate a Procfile that starts a PHP development server of your WordPress installation when you run:

$ gem install foreman
$ foreman start
$ open http://localhost:8000

Serve your WordPress environment with Pow

To serve your WordPress development environment using Pow and have nice local development domain names, add a symlink to port 8000:

$ echo "8000" > ~/.pow/myblog
$ open http://myblog.dev/

Theme Development Setup

Please read DEVELOPING_THEMES.md to learn how you can hook PressPass into your theme development workflow and be awesome.

Having problems?

Are you having problems? Please open an issue at https://github.com/firmhouse/presspass/issues.