From 87b240163c85e84ad6bb77418e8daa9de7234355 Mon Sep 17 00:00:00 2001 From: lmd59 Date: Fri, 8 Aug 2025 10:36:04 -0400 Subject: [PATCH 1/2] Update README.md Add data rights --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/README.md b/README.md index 2a2989c..19ad5a2 100644 --- a/README.md +++ b/README.md @@ -52,3 +52,35 @@ This application requires node.js v20.0 or greater. Using [`nvm`](https://github - `nvm install 20` - `nvm use 20` or `nvm use default 20`, as most of the REMS Integration Prototype repositories are compatible with node v20.0. + +# Data Rights + +
+NOTICE +
+ +This (software/technical data) was produced for the U. S. Government under Contract Number 75FCMC18D0047/75FCMC23D0004, and is subject to Federal Acquisition Regulation Clause 52.227-14, Rights in Data-General. + + +No other use other than that granted to the U. S. Government, or to those acting on behalf of the U. S. Government under that Clause is authorized without the express written permission of The MITRE Corporation. + + +For further information, please contact The MITRE Corporation, Contracts Management Office, 7515 Colshire Drive, McLean, VA 22102-7539, (703) 983-6000. + +
+©2025 The MITRE Corporation. +
+ +
+ +Licensed under the Apache License, Version 2.0 (the "License"); use of this repository is permitted in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + From 5efbb6e85787dcd7de3fd4f736df9e9c536530ea Mon Sep 17 00:00:00 2001 From: Sahil Malhotra Date: Thu, 28 Aug 2025 10:42:28 -0400 Subject: [PATCH 2/2] run prettier/lint --- backend/src/server.ts | 2 +- frontend/vite.config.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/server.ts b/backend/src/server.ts index 06e3e2b..1627125 100644 --- a/backend/src/server.ts +++ b/backend/src/server.ts @@ -21,7 +21,7 @@ async function main() { origin: env.ALLOWED_ORIGIN }; - console.log("CORS OPTIONS: " + JSON.stringify(options)) + console.log('CORS OPTIONS: ' + JSON.stringify(options)); app.use(bodyParser.urlencoded({ extended: false })); app.use(cors(options)); diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 6981265..187cc8c 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -10,8 +10,8 @@ export default defineConfig({ plugins: [react()], preview: { allowedHosts: ['.mitre.org', '.elb.us-east-1.amazonaws.com'], - port: parseInt(process.env.PORT!), - host: true, + port: parseInt(process.env.PORT!), + host: true }, define: { 'process.env': process.env