Skip to content

Commit 52432d6

Browse files
Merge pull request #144 from HDI-Project/milestone122
Milestone122
2 parents 95d1a42 + f869f52 commit 52432d6

Some content is hidden

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

62 files changed

+120
-2953
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# tmp files
22
.DS_Store
3-
mtv.tar*
43
tempCodeRunnerFile.ts
54
tempCodeRunnerFile.py
5+
mtv.tar*
6+
.vscode/
7+
68

79
# Byte-compiled / optimized / DLL files
810
__pycache__/

.vscode/settings.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ ADD . /mtv
5050
WORKDIR /mtv
5151

5252
# install application packages for python and node
53-
RUN make install-theme
5453
RUN make install
5554
RUN cd ./client && npm install && npm run build:prod
5655

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ install: clean-build clean-pyc clean-client ## install the packages for running
4040
.PHONY: install-develop
4141
install-develop: clean-build clean-pyc clean-client ## install the package in editable mode and dependencies for development
4242
pip install -e .[dev]
43-
# npm install --quiet -g gulp-cli
4443
cd client && npm install
4544

4645
.PHONY: install-theme

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
<!-- [![PyPI Shield](https://img.shields.io/pypi/v/mtv.svg)](https://pypi.python.org/pypi/mtv) -->
77
[![Build Status](https://travis-ci.com/dyuliu/mtv.svg?branch=master)](https://travis-ci.com/dyuliu/mtv)
88
[![Coverage Status](https://coveralls.io/repos/github/dyuliu/MTV/badge.svg)](https://coveralls.io/github/dyuliu/MTV)
9-
9+
[![Github All Releases](https://img.shields.io/github/downloads/dyuliu/MTV/total)](https://github.com/dyuliu/MTV/releases)
10+
[![Docker Pulls](https://img.shields.io/docker/pulls/dyuliu/mtv)](https://hub.docker.com/r/dyuliu/mtv)
1011

1112
# MTV
1213

@@ -21,7 +22,6 @@ The Restful APIs documentation: http://45.77.5.58/apidoc/
2122
[The MIT License](https://github.com/HDI-Project/MTV/blob/master/LICENSE)
2223

2324

24-
2525
## Before You Begin
2626

2727
Before you begin we recommend you read about the basic building blocks that assemble the **MTV**:

client/assets.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
const STATIC = './public/lib-static'; // manually installed
2+
const NPM = './node_modules'; // package.json
23

34
let assets = {
45
css: [
6+
// `${NPM}/bootstrap/dist/css/bootstrap.min.css`,
57
`${STATIC}/tooltipster/css/tooltipster.css`
6-
],
8+
],
79
js: [
8-
`${STATIC}/jquery.min.js`,
10+
`${NPM}/jquery/dist/jquery.min.js`,
911
`${STATIC}/jquery-ui.js`,
10-
`${STATIC}/jquery.rest.js`,
12+
`${NPM}/jquery.rest/dist/jquery.rest.min.js`,
13+
// `${NPM}/bootstrap/dist/js/bootstrap.min.js`,
1114
`${STATIC}/bootstrap.min.js`,
1215
]
1316
}

0 commit comments

Comments
 (0)