Package

purescript-metajelo-web

Repository
labordynamicsinstitute/metajelo-web
License
BSD-3-Clause-Attribution
Uploaded by
bbarker
Published on
2019-07-11T15:14:49Z

Build Status

Web tools to display metajelo packages.

Installing CSS

PureCSS

Pure CSS is used for responsive web design, but, you can use something else: custom CSS or Bootstrap. Or, you can even omit it entirely, though this is not generally recommended.

See the "Add Pure to Your Page " and "Add the Viewport Meta Element" for how to install it under Get Started, or check the test/index.htmlfile in this repository for how this is done.

Default or Custom CSS Styles.

The file css/style.css contains some default styles used in our examples. Feel free to include it, or modify it (renaming the file is also possible):

<link rel="stylesheet" href="css/style.css">

Creating the application element

Here we make use of PureCSS's responsive grid: you can use an alternative grid system instead, e.g. Bootstrap, but PureCSS was lighter weight and fit our needs.

<div class= "pure-g">
  <div class="pure-u-1-1">
    <div id="metajelo_root"></div>
  </div>
</div>

Docker

  • Run ./psc.sh <command>, e.g. ./psc.sh npm run prod. This will run npm run prod the command in the container with the CWD mounted and then exit. Alternatively if you want to issue multiple commands in the container quickly, you can run ./psc.sh bash.

API docs are available on Pursuit.