Skip to content

Commit 3da4275

Browse files
authored
Merge pull request #95 from ryanmcd118/main
Revamped app deployment and hosting
2 parents a29c156 + 0e9f6cd commit 3da4275

33 files changed

+17303
-14272
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.babelrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"useBuiltIns": "entry",
7+
"corejs": 3
8+
}
9+
],
10+
"@babel/preset-react"
11+
]
12+
}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
node_modules
2-
build
2+
public
33
.DS_Store

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14.16
1+
FROM node:20.8.1
22
WORKDIR /usr/src/app
33
COPY . /usr/src/app
44
RUN npm install

client/.DS_Store

0 Bytes
Binary file not shown.

client/assets/chris-headshot.png

-260 KB
Loading

client/assets/john-headshot.png

-1.02 MB
Loading

client/assets/ryan-headshot.jpeg

-27 KB
Binary file not shown.

client/assets/ryan-headshot.png

6.16 MB
Loading

client/components/tableNode.jsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ import ColumnNode from './columnNode';
44
export default memo(({ data }) => {
55
const { tableName, columns, dataTypes } = data;
66

7-
/*
8-
// conditional because for some reason the array is undefined for the first two logs?? brute forcing it ...
9-
*/
7+
// conditional -- array is undefined for the first two logs
108
let tableColumns;
119

1210
columns
@@ -22,7 +20,7 @@ export default memo(({ data }) => {
2220

2321
return (
2422
<>
25-
<div className="tableHeader">
23+
<div className='tableHeader'>
2624
<strong>{tableName}</strong>
2725
</div>
2826
<br />

0 commit comments

Comments
 (0)