Skip to content

Commit fc32dae

Browse files
authored
modified: src/App.tsx (#168)
1 parent 00fe45e commit fc32dae

24 files changed

+93
-117
lines changed

README.md

Lines changed: 41 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ posted by professors, graduate students, or lab staff.</p>
2828
[![Node.js][Node.js]][Node.js-url]
2929
[![Tailwind CSS][TailwindCSS]][TailwindCSS-url]
3030

31+
### Current Frontend UI
32+
<img src="src/images/website_image2.png" alt="Website Image 1" width="360" align="top">
33+
<img src="src/images/website_image1.png" alt="Website Image 2" width="360" align="top">
3134

3235
<!-- Getting Started -->
3336
## Prerequisites
@@ -64,23 +67,55 @@ posted by professors, graduate students, or lab staff.</p>
6467
|------------------------|---------------|---------------------------------------------------------------|
6568
| `VITE_BACKEND_SERVER` | None | URL to the backend server |
6669
67-
Set the varaible with:
68-
```
69-
$ export VITE_BACKEND_SERVER="http://127.0.0.1:9000"
70-
```
70+
* Set the variable with:
71+
```
72+
$ export VITE_BACKEND_SERVER="http://127.0.0.1:9000"
73+
```
7174
7275
## Testing
7376
* To run the frontend locally run the following:
7477
```
7578
$ make develop
7679
```
7780
This command allows editing and autoreloading while making changes
81+
82+
### Linting
83+
* Run the linter and fix any lint issues to maintiain code quality and standards
84+
```
85+
make lint
86+
```
7887
7988
## Building
80-
* To build the application use this command to build the static files and test the production version of deploy the files.
89+
* To build the application use this command to build the static files and test the production version of the files.
8190
```
82-
npm run build
91+
$ npm run build
8392
```
93+
This command allows editing and autoreloading while making changes
94+
95+
## Deployment
96+
Create PRs to the main branch from your working branch. Make sure your new code is tested and bug free. Upon creating a merge request, a build test will make sure your code is running without errors and safe to merge to main.
97+
98+
## Contact Us
99+
[![Discord](https://img.shields.io/badge/Discord-5865F2.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/tsaxCKjYHT)
100+
[![Jira](https://img.shields.io/badge/Jira-0052CC.svg?style=for-the-badge&logo=jira&logoColor=white)](https://rcoslabconnect.atlassian.net/jira/software/projects/CCS/list)
101+
102+
## Project Contributors
103+
104+
Running list of contributors to the LabConnect project:
105+
106+
### Project Lead
107+
108+
- **Will Broadwell** [Project Lead]
109+
- **Rafael Cenzano** [Former Project Lead]
110+
111+
### Rensselaer Center for Open Source Development Team
112+
113+
- **Jaswanth D** [Frontend]
114+
- **Doan N** [Frontend]
115+
- **Pragathi A** [Frontend / Backend]
116+
- **Aniket S** [Backend]
117+
118+
### Past Rensselaer Center for Open Source Development Team
84119
85120
## Deployment
86121
Create PRs to the main branch. Upon merging, a build test will make sure your code is running without errors and safe to merge to main. On a completed merge the action will build and push the new docker image.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="UTF-8" />
6-
<link rel="icon" href="/favicon.ico" />
6+
<link rel="icon" href="/public/favicon.ico" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
88
<title>Labconnect</title>
99
</head>

public/favicon.ico

997 KB
Binary file not shown.

public/logo192.png

-5.22 KB
Binary file not shown.

public/logo512.png

-9.44 KB
Binary file not shown.

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function App() {
2525
<HelmetProvider>
2626
<div className="min-h-screen flex flex-col bg-white dark:bg-gray-900">
2727
<MainNavigation />
28-
<main className="p-8 grow bg-transparent">
28+
<main className="p-10 grow bg-transparent">
2929
<Routes>
3030
<Route path="/" element={<Home />} />
3131
<Route path="/health" element={<p>App is Healthy</p>} />
48.5 KB
Loading

src/images/simple_logo.png

798 KB
Loading

src/images/website_image1.png

153 KB
Loading

src/images/website_image2.png

134 KB
Loading

0 commit comments

Comments
 (0)