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.
+
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