Skip to content

Commit 27e2508

Browse files
authored
Merge pull request #138 from mcode/data-rights
Update README.md
2 parents 38064c6 + 5efbb6e commit 27e2508

3 files changed

Lines changed: 35 additions & 3 deletions

File tree

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,35 @@ This application requires node.js v20.0 or greater. Using [`nvm`](https://github
5252

5353
- `nvm install 20`
5454
- `nvm use 20` or `nvm use default 20`, as most of the REMS Integration Prototype repositories are compatible with node v20.0.
55+
56+
# Data Rights
57+
58+
<div style="text-align:center">
59+
<b>NOTICE</b>
60+
</div>
61+
62+
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.
63+
64+
65+
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.
66+
67+
68+
For further information, please contact The MITRE Corporation, Contracts Management Office, 7515 Colshire Drive, McLean, VA 22102-7539, (703) 983-6000.
69+
70+
<div style="text-align:center">
71+
<b>&copy;2025 The MITRE Corporation.</b>
72+
</div>
73+
74+
<br />
75+
76+
Licensed under the Apache License, Version 2.0 (the "License"); use of this repository is permitted in compliance with the License.
77+
You may obtain a copy of the License at
78+
79+
http://www.apache.org/licenses/LICENSE-2.0
80+
81+
Unless required by applicable law or agreed to in writing, software
82+
distributed under the License is distributed on an "AS IS" BASIS,
83+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
84+
See the License for the specific language governing permissions and
85+
limitations under the License.
86+

backend/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async function main() {
2121
origin: env.ALLOWED_ORIGIN
2222
};
2323

24-
console.log("CORS OPTIONS: " + JSON.stringify(options))
24+
console.log('CORS OPTIONS: ' + JSON.stringify(options));
2525

2626
app.use(bodyParser.urlencoded({ extended: false }));
2727
app.use(cors(options));

frontend/vite.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export default defineConfig({
1010
plugins: [react()],
1111
preview: {
1212
allowedHosts: ['.mitre.org', '.elb.us-east-1.amazonaws.com'],
13-
port: parseInt(process.env.PORT!),
14-
host: true,
13+
port: parseInt(process.env.PORT!),
14+
host: true
1515
},
1616
define: {
1717
'process.env': process.env

0 commit comments

Comments
 (0)