Skip to content

Commit d4ce85d

Browse files
authored
Merge pull request #33 from inab/chore/remove-hardcoded-libs
Chore: remove hardcoded libs
2 parents a36eda2 + 2489fa9 commit d4ce85d

1,538 files changed

Lines changed: 1030 additions & 280062 deletions

File tree

Some content is hidden

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

front_end/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
55

66
RUN apt-get update
77
RUN a2enmod proxy proxy_http
8-
RUN apt install -y nodejs
8+
RUN apt install -y nodejs npm
99
RUN apt-get install -y autoconf pkg-config libssl-dev
1010
RUN docker-php-ext-install bcmath
1111
RUN echo "extension=mongodb.so" >> /usr/local/etc/php/conf.d/mongodb.ini
@@ -39,6 +39,7 @@ WORKDIR /var/www/html
3939
ADD openVRE /var/www/html/openVRE
4040
RUN cd openVRE
4141
WORKDIR /var/www/html/openVRE
42+
RUN npm ci
4243
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
4344
RUN composer self-update
4445
RUN composer update --ignore-platform-req=ext-mongodb --ignore-platform-req=ext-mongodb

front_end/openVRE/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Node modules
2+
node_modules/
3+
public/assets/global/plugins
4+
plugins-to-copy/

front_end/openVRE/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=true

front_end/openVRE/package-lock.json

Lines changed: 312 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/openVRE/package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "openvre-frontend",
3+
"version": "1.0.0",
4+
"private": true,
5+
"scripts": {
6+
"postinstall": "node scripts/copy-plugins.js",
7+
"copy-plugins": "node scripts/copy-plugins.js"
8+
},
9+
"dependencies": {
10+
"bootstrap": "3.3.6",
11+
"bootstrap-switch": "3.3.2",
12+
"clipboard": "1.5.12",
13+
"codemirror": "5.6.0",
14+
"counterup": "1.0.0",
15+
"easy-pie-chart": "2.1.7",
16+
"fancybox": "2.1.5",
17+
"flot": "0.8.3",
18+
"font-awesome": "4.7.0",
19+
"handlebars": "1.3.0",
20+
"jasny-bootstrap": "3.1.3",
21+
"jquery": "1.12.1",
22+
"jquery-blockui": "^2.7.0",
23+
"jquery-validation": "1.14.0",
24+
"jquery.cookiebar": "0.0.1",
25+
"marked": "2.0.2",
26+
"progress-tracker": "1.4.0",
27+
"select2": "4.0.3",
28+
"select2-bootstrap-theme": "0.1.0-beta.4",
29+
"simple-line-icons": "1.0.0",
30+
"simple-line-icons-webfont": "^4.0.2",
31+
"toastr": "2.1.0",
32+
"typeahead.js": "0.11.1"
33+
}
34+
}

front_end/openVRE/public/assets/global/plugins/bootstrap-fileinput/bootstrap-fileinput.css renamed to front_end/openVRE/plugin-overlays/bootstrap-fileinput/bootstrap-fileinput.css

File renamed without changes.

front_end/openVRE/public/assets/global/plugins/codemirror/addon/display/placeholder.js renamed to front_end/openVRE/plugin-overlays/codemirror/addon/display/placeholder.js

File renamed without changes.

front_end/openVRE/public/assets/global/plugins/codemirror/addon/edit/matchbrackets.js renamed to front_end/openVRE/plugin-overlays/codemirror/addon/edit/matchbrackets.js

File renamed without changes.

front_end/openVRE/public/assets/global/plugins/codemirror/addon/lint/json-lint.js renamed to front_end/openVRE/plugin-overlays/codemirror/addon/lint/json-lint.js

File renamed without changes.

front_end/openVRE/public/assets/global/plugins/codemirror/addon/lint/lint.css renamed to front_end/openVRE/plugin-overlays/codemirror/addon/lint/lint.css

File renamed without changes.

0 commit comments

Comments
 (0)