tldr/pages/common/middleman.md

25 lines
530 B
Markdown
Raw Normal View History

2020-02-28 13:35:24 +00:00
# middleman
> Static site generator written in Ruby.
> More information: <https://middlemanapp.com/>.
- Create a new Middleman project:
`middleman init "{{project_name}}"`
- Start local server for current project on port 4567:
`middleman server`
- Start local server for current project on a specified port:
`middleman server -p "{{port}}"`
2020-04-10 13:04:45 +01:00
- Build the project in the current directory to prepare for deployment:
2020-02-28 13:35:24 +00:00
`bundle exec middleman build`
2020-04-10 13:04:45 +01:00
- Deploy the Middleman project in the current directory:
2020-02-28 13:35:24 +00:00
`middleman deploy`