https://github.com/cedadev/jasmin-cloud-ui
Web UI for the JASMIN Cloud Portal
https://github.com/cedadev/jasmin-cloud-ui
Last synced: over 1 year ago
JSON representation
Web UI for the JASMIN Cloud Portal
- Host: GitHub
- URL: https://github.com/cedadev/jasmin-cloud-ui
- Owner: cedadev
- Created: 2017-06-06T10:09:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-01-25T10:42:35.000Z (over 2 years ago)
- Last Synced: 2025-01-06T02:09:14.640Z (over 1 year ago)
- Language: JavaScript
- Size: 12.1 MB
- Stars: 1
- Watchers: 8
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jasmin-cloud-ui
Web portal frontend for the [JASMIN Cloud API](https://github.com/cedadev/jasmin-cloud).
## Setting up a development environment
First, make sure you have a local version of the [JASMIN Cloud API](https://github.com/cedadev/jasmin-cloud)
running on `http://localhost:8000`, as per the instructions in the `README`.
In order to install and run the JASMIN Cloud Portal user interface, you will need [Node](https://nodejs.dev/)
and [yarn](https://yarnpkg.com/) installed.
Check out the code:
```sh
git clone https://github.com/cedadev/jasmin-cloud-ui.git
cd jasmin-cloud-ui
```
Initialise git submodules:
```sh
git submodule update --init --recursive
```
Install the dependencies using `yarn`:
```sh
yarn install --immutable
```
Then start the development server:
```sh
yarn serve
```
This will start the JASMIN Cloud UI at `http://localhost:3000`.