Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated readme #476

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ A **POST** API which takes a SQL statement to create a database/table/view in th
1. Clone [Coral repo](https://github.com/linkedin/coral)
```bash
git clone https://github.com/linkedin/coral.git
```
```
2. From the root directory of Coral, access the coral-service module
```bash
cd coral-service
```
```
3. Build
```bash
../gradlew clean build
```
```
#### To run Coral Service using the **local metastore**:
4. Run
```bash
Expand All @@ -132,7 +132,7 @@ cd coral-service
6. Run
```
../gradlew bootRun
```
```
You can also specify a custom location of `hive.properties` file through `--hivePropsLocation` as follows
```
./gradlew bootRun --args='--hivePropsLocation=/tmp/hive.properties'
Expand All @@ -148,6 +148,12 @@ or `../gradlew bootRun` (for remote metastore mode) from coral-service module, c
2. Copy over the template from `.env.local.example` into the new `.env.local` file
3. Fill in the environment variable values in `.env.local`

#### Install the required packages in the frontend directory:

```bash
npm install
```

#### Now you can start the Coral Service UI by running:
```bash
npm run dev
Expand Down
Loading