Deploy Slate to Heroku

Documentaton is a big part of a project, more critical if you need to hand off the details of your API to multiple third parties that will interact with it. Here you will lean how to deploy Slate, the API documentation generator based on Middleman, on Heroku, and how to configure it to generate the static HTML files with each commit on a repository. Table of Contents Some context Set up Slate locally...
📘️ Read article

Wordpress Development Environment With Docker Part III Using Your Own Wordpress Theme

Welcome to the last part of the WordPress development environment with Docker. We will see how to use your own theme in the previous Docker container we created in Part II. Table of Contents Accessing the container Sharing data Adding your own theme Side note on volumes Wrapping up Accessing the container Our WordPress instance is installed and running in a container, we have to ask ourselves how to...
📘️ Read article

Wordpress development environment with Docker Part II: Using Docker Compose to install WordPress

This is part II of an ongoing series about WordPress development with Docker. Part I was about installing Docker and preparing the environment. Our goal this time, is installing WordPress in a container, a database, and play a little bit with it. Table of Contents Prerequisites Directory structure Using docker-compose Setting up WordPress Setting up a database Bonus part Wrapping up Prerequisites A fonctionning installation of Docker (see...
📘️ Read article

WordPress development environment with Docker Part I: installing Docker

Welcome to this (soon to be) series about WordPress development environment using Docker. We will cover the basis of how to set up Docker, how to configure it to run a WordPress instance in a container, and how to add our theme, modify it, and see instantly the result. Part I is aimed at people who heard about Docker and containers, but never got deeper. If you already know what is it all about, and have a functioning environment,...
📘️ Read article

Dealing with the MongoDB error /data/db not found in OSX

Disclaimer if you landed somehow on this article, you have probably miss something in the install process of MongoDB. What the.. ? When trying to launch mongodb in your Terminal, I guess you have met with this kind of error message: $ mac:app jeremie$ mongod 2015-10-09T12:06:37.396+0200 I STORAGE [initandlisten] exception in initAndListen: 29 Data directory /data/db not found., terminating The output is pretty clear, you do not...
📘️ Read article