Skip to content

Commit

Permalink
initial project scaffold based on metajelo-web
Browse files Browse the repository at this point in the history
  • Loading branch information
bbarker committed Jun 24, 2019
1 parent b7819af commit b95dc03
Show file tree
Hide file tree
Showing 49 changed files with 14,199 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
bower_components/
.cache
dist/
testdist/
/node_modules
.pulp-cache/
output/
generated-docs/
.npm/
.psc-package/
.psc*
.purs*
.psa*
.spago/

app/prod/
!app/prod/css

test/index.js

# Temp files:
*~
\.\#*
.xdg*
.fuse_hidden*
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: minimal

services:
- docker

before_script:
- chmod a+w -R .

script:
- IMG_VER=0.12.5_r1 ./scripts/dist_build.sh

deploy:
provider: pages
local_dir: app/dist
target_branch: gh-pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
keep_history: true
on:
branch: master
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# metajelo-ui
UI for metajelo

[![Build Status](https://travis-ci.com/labordynamicsinstitute/metajelo-ui.svg?token=fzz41xcnJ15QPD7QhZkZ&branch=master)](https://travis-ci.com/labordynamicsinstitute/metajelo-ui)

Web tools to display
[metajelo](https://github.com/labordynamicsinstitute/metajelo) packages.

# Usage

# Buidling

## Docker

* Run `./psc.sh <command>`, e.g. `./psc.sh pulp --psc-package build`. This will run
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`.

Loading

0 comments on commit b95dc03

Please sign in to comment.