Forrest logo
back to context overview

middleman

List of commands for middleman:

  • middleman:tldr:3e3bf middleman: Start local server for current project on a specified port.
    $ middleman server -p "${port}"
    try on your machine
    explain this command
  • middleman:tldr:5ede4 middleman: Create a new Middleman project.
    $ middleman init "${project_name}"
    try on your machine
    explain this command
  • middleman:tldr:81456 middleman: Start local server for current project on port 4567.
    $ middleman server
    try on your machine
    explain this command
  • middleman:tldr:908e2 middleman: Build the project in the current directory to prepare for deployment.
    $ bundle exec middleman build
    try on your machine
    explain this command
  • middleman:tldr:c1a92 middleman: Deploy the Middleman project in the current directory.
    $ middleman deploy
    try on your machine
    explain this command
back to context overview