Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/danielbachhuber/wpgists.org
- Owner: danielbachhuber
- Created: 2014-04-15T19:26:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-15T23:27:02.000Z (over 10 years ago)
- Last Synced: 2024-10-09T11:38:19.827Z (30 days ago)
- Homepage: http://wpgists.org
- Size: 1.66 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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".