mike dupont
commited on
Commit
•
d81fbeb
1
Parent(s):
c6105bd
now adding logo and updating plan
Browse files- README.md +8 -0
- docker-compose.yml +5 -0
- frontend/public/cropped.jpg +0 -0
- frontend/public/logo192.png +0 -0
- frontend/src/App.js +1 -8
- frontend/src/logo.svg +78 -1
- package-lock.json +6 -0
README.md
CHANGED
@@ -30,6 +30,14 @@ Run reports via notebooks
|
|
30 |
#### Run apps
|
31 |
|
32 |
Load different apps and other servlets like streamlit and gradio via safe containers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
## Available Scripts
|
35 |
|
|
|
30 |
#### Run apps
|
31 |
|
32 |
Load different apps and other servlets like streamlit and gradio via safe containers
|
33 |
+
create custom displays via iframes.
|
34 |
+
create directory to select results
|
35 |
+
and display other results from huggingface datasets.
|
36 |
+
|
37 |
+
#### Generate logos and code
|
38 |
+
|
39 |
+
Use ai services to generate logos and html pages for the project, give them feedback,
|
40 |
+
use autogpt or other tools.
|
41 |
|
42 |
## Available Scripts
|
43 |
|
docker-compose.yml
CHANGED
@@ -4,4 +4,9 @@ services:
|
|
4 |
- "7860:7860"
|
5 |
build: .
|
6 |
image: introspector-react-browser:latest
|
|
|
|
|
|
|
|
|
|
|
7 |
# frontend:
|
|
|
4 |
- "7860:7860"
|
5 |
build: .
|
6 |
image: introspector-react-browser:latest
|
7 |
+
#volumes:
|
8 |
+
# - type: bind
|
9 |
+
# source: "frontend/build/static"
|
10 |
+
# target: "/home/user/app/static"
|
11 |
+
|
12 |
# frontend:
|
frontend/public/cropped.jpg
DELETED
Binary file (23.2 kB)
|
|
frontend/public/logo192.png
CHANGED
frontend/src/App.js
CHANGED
@@ -51,14 +51,7 @@ function App() {
|
|
51 |
</TableBody>
|
52 |
</Table>
|
53 |
</p>
|
54 |
-
|
55 |
-
className="App-link"
|
56 |
-
href="https://reactjs.org"
|
57 |
-
target="_blank"
|
58 |
-
rel="noopener noreferrer"
|
59 |
-
>
|
60 |
-
Learn React
|
61 |
-
</a>
|
62 |
</header>
|
63 |
</div>
|
64 |
);
|
|
|
51 |
</TableBody>
|
52 |
</Table>
|
53 |
</p>
|
54 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
</header>
|
56 |
</div>
|
57 |
);
|
frontend/src/logo.svg
CHANGED
package-lock.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "introspector-react-app",
|
3 |
+
"lockfileVersion": 3,
|
4 |
+
"requires": true,
|
5 |
+
"packages": {}
|
6 |
+
}
|