Write Markdown journal notes using WordPress.
##What does it do? Takes over your WordPress install on activation and enables the user to quickly write MarkDown powered journal notes.
- Type Markdown on the left, see styled output on the right
- Automatically saves
- Quickly add new notes
- Works on mobile
- Is plain awesome
##How to start helping the development I tried to make development as painless as possible, so I added a Vagrant box and a Gulp automated workflow.
###Tools you need
- Download and install Vagrant
- Download and install Node.js
- Install the Sass gem (in the terminal):
gem install sass - Install Gulp
npm install -g gulp
###Running the webserver
- Clone this repository git clone https://github.com/Gaya/MarkPress.git
- Create a folder in the root called
www - Put a WordPress install in
www - Rename
wp-config-sample.phptowp-config.phpand change the database credentials to:- Database:
wordpress - User:
root - Password:
root
- Database:
- Go to the
vagrant/folder in the terminal - Run:
vagrant up - Put
192.168.56.125 markpress.devin your hosts file - Go to http://markpress.dev in your browser
- Go through WordPress setup
- Activate the MarkPress plugin in http://markpress.dev/wp-admin/
###Front-end Development
- Run
npm installin the root of the project - To start watching Sass and JavaScript run
gulp watchin the terminal