-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial project scaffold based on metajelo-web
- Loading branch information
Showing
49 changed files
with
14,199 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`. | ||
|
Oops, something went wrong.