Skip to content

Commit

Permalink
updating to new version of mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
audrism committed Dec 31, 2021
1 parent 84227cd commit 91ee5e5
Show file tree
Hide file tree
Showing 15 changed files with 4,149 additions and 4,556 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ RUN apt-get update -q \
apt-utils \
iputils-ping \
telnet \
socat \
less \
locales \
libzmq3-dev \
Expand Down
2 changes: 1 addition & 1 deletion RESTJupyter.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
"* a2p \t* a2trp0 \n",
"* b2a\t* b2c \t* b2f \t* b2ob\t* b2tk\n",
"* c2b \t* c2cc\t* c2f \t* c2h\t* c2pc\n",
"* c2p \t* c2P\t* c2ta \t* c2td\n",
"* c2p \t* c2P\t* c2dat \t* c2td\n",
"* f2a\t* f2b \t* f2c \t\t\n",
"* p2a \t* p2c \t* P2c\n",
"* td2c\t* td2f\n",
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/Clickhouse/ClickhouseForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ReactDOM from 'react-dom';
import { withRouter, Router } from "react-router-dom";
import { connect } from 'react-redux';
import { styles } from '../common/styles';
import queryString from 'query-string';
// import queryString from 'query-string';
import TextFieldGroup from '../common/TextFieldGroup';
import {
Grid,
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/Clickhouse/ClickhouseResultsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ReactDOM from 'react-dom';
import { withRouter, Router } from "react-router-dom";
import { connect } from 'react-redux';
import { styles } from '../common/styles';
import queryString from 'query-string';
// import queryString from 'query-string';
import Markdown from 'react-markdown';
import {
Card,
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/FastGraph/FastGraphForm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { FilterableContent } from 'react-filterable-content';
// import { FilterableContent } from 'react-filterable-content';
import { withRouter } from "react-router-dom";
import { connect } from 'react-redux';
import TextFieldGroup from '../common/TextFieldGroup';
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/Locate/LocateProfilesForm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
// import { FilterableContent } from 'react-filterable-content';
import { FilterableContent } from 'react-filterable-content';
import { withRouter } from "react-router-dom";
import { connect } from 'react-redux';
import {
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/Lookup/LookupResultsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { styles } from '../common/styles';
import ErrorPage from '../App/NotFound';
import MapButton from '../Mapping/MapButton';
import GraphButton from '../FastGraph/GraphButton';
import queryString from 'query-string';
// import queryString from 'query-string';
import Markdown from 'react-markdown';
import {
Button as MenuButton,
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/Lookup/LookupSearchForm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { FilterableContent } from 'react-filterable-content';
// import { FilterableContent } from 'react-filterable-content';
import { withRouter } from "react-router-dom";
import { connect } from 'react-redux';
import TextFieldGroup from '../common/TextFieldGroup';
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/Mapping/MapButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { FileMap } from './FileMap';
import { ProjectMap } from './ProjectMap';
import { lookupSha } from '../../../actions/Search';
import '../common/modal.css';
import queryString from 'query-string';
// import queryString from 'query-string';
import Markdown from 'react-markdown';
import {
Button as MenuButton,
Expand Down
2 changes: 1 addition & 1 deletion client/app/components/Sampling/SamplingRestrictionForm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { FilterableContent } from 'react-filterable-content';
// import { FilterableContent } from 'react-filterable-content';
import { withRouter } from "react-router-dom";
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
Expand Down
4 changes: 2 additions & 2 deletions config/config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copy this file as config.js in the same folder, with the proper database connection URI.

module.exports = {
db: 'mongodb://da1:27017/WoC',
db_dev: 'mongodb://da1:27017/WoC',
db: 'mongodb://dbWoC:27017/WoC',
db_dev: 'mongodb://dbWoC:27017/WoC',
jwtSecret: 'supersecrettestkeyforsomethingsecret',
clickhouse: 'http://da1.eecs.utk.edu',
showCnt: (process.env.DRE_LOOKUP_PATH ? (process.env.DRE_LOOKUP_PATH + "/showCnt") : '$HOME/lookup/showCnt'),
Expand Down
2 changes: 1 addition & 1 deletion config/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module.exports = {
resolve: {
fullySpecified: false
},
exclude: /node_modules/,
exclude: /(node_modules|bower_components)/,
use: 'babel-loader'
},

Expand Down
Loading

0 comments on commit 91ee5e5

Please sign in to comment.