https://github.com/terrestris/shogun-admin
An UI for handling SHOGun entities like users, applications, and layers
https://github.com/terrestris/shogun-admin
hacktoberfest react rest-client shogun
Last synced: 6 months ago
JSON representation
An UI for handling SHOGun entities like users, applications, and layers
- Host: GitHub
- URL: https://github.com/terrestris/shogun-admin
- Owner: terrestris
- License: apache-2.0
- Created: 2020-10-05T08:07:06.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-04T04:07:12.000Z (6 months ago)
- Last Synced: 2025-04-05T17:16:07.467Z (6 months ago)
- Topics: hacktoberfest, react, rest-client, shogun
- Language: TypeScript
- Homepage:
- Size: 26.4 MB
- Stars: 4
- Watchers: 13
- Forks: 7
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README


# shogun-admin
## An UI for handling SHOGun entities like users, applications, and layers
### …easily extendable to manage your project entities, too.# Docker
`shogun-admin` should be used in a Docker environment. The easiest way to do this is to use [shogun-docker](https://github.com/terrestris/shogun-docker) which includes the image.
# Development
Assuming the following directory structure
```
shogun-directory/
├── shogun-docker (https://github.com/terrestris/shogun-docker)
├── shogun-admin (this repository)
└── …
```You can simply mount the `shogun-admin` into your docker-compose environment:
```yml
shogun-admin:
build:
context: ../shogun-admin
dockerfile: Dockerfile.dev
volumes:
- ../shogun-admin:/app
```# Semantic release
Allowed Tags for semantic release (see the [FAQs](https://github.com/semantic-release/semantic-release/blob/master/docs/support/FAQ.md) for more information about this):
- Breaking changes: `breaking`
- Features: `feat`
- Bugfixes: `fix`,
- Package updates: `chore`
- Style: `style`
- Changes in configuration: `ci`, `config`
- `docs`, `refactor`, `test`, `norelease`