Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 0da4f2b

Browse files
author
Dennis Schwartz
authored
Merge pull request #59 from biojs/develop
Biohackathon work and latest changes
2 parents a2977ae + ddc1872 commit 0da4f2b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+70001
-2701
lines changed

.eslintrc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ module.exports = {
2424
// allow async-await
2525
'generator-star-spacing': 'off',
2626
// allow debugger during development
27-
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
27+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
28+
"indent": [2, "tab"],
29+
"no-tabs": 0,
30+
"semi": [2, "always"]
2831
}
2932
}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DS_Store
2-
node_modules/
2+
/node_modules/
33
/dist/
44
npm-debug.log*
55
yarn-debug.log*

.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# specify language
2+
language: node_js
3+
4+
# specify NodeJS version
5+
node_js:
6+
- "8.11.0"
7+
8+
# configure chrome
9+
before_install:
10+
- export CHROME_BIN=chromium-browser
11+
- export DISPLAY=:99.0
12+
- sh -e /etc/init.d/xvfb start
13+
14+
# install dependencies
15+
install:
16+
- npm install
17+
18+
# run unit tests only
19+
script:
20+
- npm run unit
21+
22+
# get notified through email
23+
notifications:
24+
email: true

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 BioJS
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
> Frontend for BioJS as a part of GSoC 2018.
44
5+
## Status
6+
7+
[![Build Status](https://travis-ci.org/biojs/biojs-frontend.svg?branch=develop)](https://travis-ci.org/biojs/biojs-frontend) <img src="http://www.bichromate.org/images/browserstack.png" height=25 />
58
## Build Setup
69

710
``` bash

build/logo.png

-6.69 KB
Binary file not shown.

config/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module.exports = {
5050
// Paths
5151
assetsRoot: path.resolve(__dirname, '../dist'),
5252
assetsSubDirectory: 'static',
53-
assetsPublicPath: '/',
53+
assetsPublicPath: './',
5454

5555
/**
5656
* Source Maps

index.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
6-
<title>biojs-frontend</title>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
6+
<link rel="icon" href="./static/logo.png" type="image/png" sizes="16x16" />
7+
<title>BioJS</title>
8+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
9+
<style>
10+
html, body {
11+
background: #efefef57;
12+
}
13+
</style>
714
</head>
815
<body>
916
<div id="app"></div>

0 commit comments

Comments
 (0)