The Marketing Engineering And Operations Team Blog
Перейти к файлу
Paul McLanahan c1980d786f
Update README.md
This is a minor change to avoid the repo being automatically archived.
2024-07-09 13:39:09 -04:00
_drafts Publish February MDN Changelog 2018-03-08 08:10:02 -06:00
_includes Fix Atom / RSS feed links 2017-01-20 10:41:19 +00:00
_layouts Add ability for a post to link to an author's URL of choice 2018-04-12 10:11:11 -04:00
_posts Review changes. 2018-08-20 12:19:18 +03:00
public MDN Changelog for February 2018 2018-03-06 13:02:38 -06:00
utils MDN Changelog for February 2018 2018-03-06 13:02:38 -06:00
.editorconfig Initial install of Lanyon theme 2016-12-19 11:59:49 -05:00
.gitignore Add Kuma Report template generator 2018-01-05 11:12:50 -06:00
404.html Initial install of Lanyon theme 2016-12-19 11:59:49 -05:00
CODE_OF_CONDUCT.md Add Mozilla Code of Conduct file 2019-03-30 11:12:41 -04:00
Gemfile Add install docs for local development 2016-12-20 14:39:18 +00:00
Gemfile.lock Add install docs for local development 2016-12-20 14:39:18 +00:00
LICENSE.md Initial install of Lanyon theme 2016-12-19 11:59:49 -05:00
README.md Update README.md 2024-07-09 13:39:09 -04:00
_config.yml Fix Atom / RSS feed links 2017-01-20 10:41:19 +00:00
about.md Add /about page info 2016-12-21 15:42:37 +00:00
atom.xml Fix Atom / RSS feed links 2017-01-20 10:41:19 +00:00
docker-run.sh New Jekyll images are faster on macOS 2018-02-04 21:14:43 -06:00
index.html Add author names to blog posts 2017-02-03 11:05:30 +00:00

README.md

MEAO

This is the source code repository for the The Marketing Engineering And Operations Team Blog.

Run with Docker

  1. Run the Docker container:
./docker-run.sh

This will take about a minute to start on macOS.

The site (with drafts) is available at http://localhost:4000/meao/

Run with Ruby

  1. Install Bundler:
gem install bundler
  1. Install dependencies:
bundle install --path vendor/bundle
  1. Serve the site with or without drafts enabled:
bundle exec jekyll serve
bundle exec jekyll serve --drafts

The site is available at http://127.0.0.1:4000/meao/

Posts and Drafts

Posts appear in the _posts folder and have a date in the filename, such as _posts/2017-07-04-happy-birthday-america.md. These are displayed in time order, and posts with future dates are not published.

Drafts appear in the _drafts folder and do not have a date in the filename, such as _drafts/my-cool-blog-post.md. They are useful for authoring a post, and then moving it to the _posts folder when you are ready for a PR. Drafts must be enabled in jekyll to view drafts.

Enjoy!