https://github.com/mondata-dev/staqe
Nimiq Albatross validator as a Service
https://github.com/mondata-dev/staqe
Last synced: 6 months ago
JSON representation
Nimiq Albatross validator as a Service
- Host: GitHub
- URL: https://github.com/mondata-dev/staqe
- Owner: mondata-dev
- License: gpl-3.0
- Created: 2024-01-25T10:45:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-24T03:53:32.000Z (over 1 year ago)
- Last Synced: 2025-03-24T04:31:10.307Z (over 1 year ago)
- Language: Vue
- Size: 1.67 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Staqe Nuxt Frontend
Frontend project for the Nimiq Staking as a Service Project Staqe.
Build with [Nuxt3](https://nuxt.com/)
## Setup
Make sure to install the dependencies:
```bash
npm install
```
## Development Server
Start the development server on `http://localhost:3000`
```bash
npm run dev
```
## Production
Build the application for production:
```bash
npm run build
```
Locally preview production build:
```bash
npm run preview
```
## Docker
The service can ben run in a docker container. To build the image run:
```bash
docker build -t staqe-frontend .
```
To run the container:
```bash
docker run -p 3000:3000 staqe-frontend
```
## Kubernetes
The service can be deployed to a kubernetes cluster. The deployment file is located in the kubernetes folder `k8s`. Make sure to edit the image name in the deployment file and upload the docker image to a registry.
Also make sure to edit the ingress file to use the correct domain name.
```bash
kubectl apply -f k8s/
```