An open API service indexing awesome lists of open source software.

https://github.com/jboynyc/mercurizer

Simple web app in Racket calling the Mercury Web Parser
https://github.com/jboynyc/mercurizer

racket

Last synced: 5 months ago
JSON representation

Simple web app in Racket calling the Mercury Web Parser

Awesome Lists containing this project

README

          

Mercurizer
==========

Mercurizer is a simple web app using Racket for the backend and IntercoolerJS
for the frontend. It takes a URL and displays the rendered markup as processed
by the Mercury Web Parser.

To run, first set the ``MERCURY_API_KEY`` environment variable.

Alternately, you can deploy Mercurizer to Heroku. Follow these simple steps:

::

$ heroku git:remote -a my-app-name
$ heroku buildpacks:set https://github.com/lexi-lambda/heroku-buildpack-racket
$ heroku config:set RACKET_VERSION=current
$ heroku config:set MERCURY_API_KEY=
$ git push heroku master

Consult `this blog post
`_
for additional guidance.