-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,35 @@ | ||
# Gemini 1 | ||
# Gemini | ||
|
||
This project is an implementation of the Gemini OCS system. | ||
|
||
## Table of Contents | ||
|
||
### designs | ||
The designs and class diagrams are located in this folder | ||
|
||
### implmentations | ||
The implementations of the classes are located in this folder. There are two parts of the implementation. The "frontend" folder is | ||
a Next.JS application that serves as a frontend. To start the application, follow these instructions | ||
|
||
## Setup | ||
|
||
```bash | ||
cp .env.sample .env | ||
|
||
pnpm install | ||
``` | ||
|
||
## Start Frontend App (Dev) | ||
|
||
```bash | ||
pnpm dev | ||
``` | ||
|
||
## Start Frontend App (Prod) | ||
|
||
```bash | ||
pnpm start | ||
``` | ||
|
||
To run the backend, please run them as a separate process by your convenience. The backend is a Springboot application. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
NEXT_PUBLIC_OCS_API_URL=http://localhost:8080 | ||
NEXTAUTH_SECRET='secretxd' |