All Projects → nanobox-io → quickstart-wordpress

nanobox-io / quickstart-wordpress

Licence: other
quick install of wordpress on pagoda box

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Quickstart Explanation

The following is an explanation of how this Quickstart was created so you can use it as a guide in creating your own Quickstarts.

  • Config File: Because Pagoda Box needs a different config file than a local version of the site, we created a new directory in the root of the project called "pagoda" and created a pagoda version of the config file there. Then we created an After Build deploy hook in the Boxfile that moved that file from pagoda/wp-config.php to wp-config.php. Also, in place of the static database credentials, we used the auto-created environment variables.
    
        after_build:
        - "mv pagoda/wp-config.php wp-config.php"
    
  • Database Component: An empty database was created by adding a db component to the Boxfile.
    
        db1:
            name: wp-db
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].