Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/danielbachhuber/wpgists.org

Share code snippets for the WordPress projects you love
https://github.com/danielbachhuber/wpgists.org

Last synced: 19 days ago
JSON representation

Share code snippets for the WordPress projects you love

Awesome Lists containing this project

README

        

wpgists.org
===========

A space for you to share snippets of code that extend the WordPress projects you love.

## Hacking

Want to contribute to wpgists.org? Great!

Provided you have your local environment configured, here's how you can get set up locally:

1. Clone the repo: `git clone --recursive [email protected]:danielbachhuber/wpgists.org.git wpgists.dev`
1. Create a `/etc/hosts` record to wpgists.dev
1. Inside of wpgists.dev, add a `wp-config-env.php` file with something like this:

define( 'DB_NAME', 'wpgists' );
define( 'DB_USER', 'root' );
define( 'DB_PASSWORD', '' );

define( 'LOCAL_DEV', true );

define( 'WP_SITEURL', 'http://wpgists.dev/wp' );
define( 'WP_HOME', 'http://wpgists.dev' );

1. If you haven't created a database already, run `wp db create`
1. Install WordPress with `wp core install`. Without any configuration parameters, the default admin user:pass is "wpgists:wpgists".