https://github.com/hydroshare/discovery-atlas
https://github.com/hydroshare/discovery-atlas
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hydroshare/discovery-atlas
- Owner: hydroshare
- License: mit
- Created: 2025-01-28T19:56:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-28T18:22:37.000Z (about 1 year ago)
- Last Synced: 2025-04-28T19:31:43.913Z (about 1 year ago)
- Language: Vue
- Size: 4.35 MB
- Stars: 0
- Watchers: 18
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HydroShare Discovery Portal with Atlas
## Getting Started
### Clone the repo, checkout this branch
```console
git clone https://github.com/hydroshare/discover-atlas.git
```
### API for local development
```console
cd app
cp .env.template .env
make build
make up
```
The API will be available at http://0.0.0.0:8000
### Frontend for local development
```console
cd app
cp .env.template .env #if you haven't already
cd frontend
npm install
npm run dev
```
The frontend will be available at http://localhost:5173/discover
More detailed info is available in the [frontend readme](frontend/README.md)
## Formatting
```console
make format
```