https://github.com/ietf-tools/sandbox
Status Landing Page for Sandbox Environments
https://github.com/ietf-tools/sandbox
Last synced: 29 days ago
JSON representation
Status Landing Page for Sandbox Environments
- Host: GitHub
- URL: https://github.com/ietf-tools/sandbox
- Owner: ietf-tools
- License: bsd-3-clause
- Created: 2022-12-05T22:08:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-05T01:38:24.000Z (9 months ago)
- Last Synced: 2025-03-30T03:41:16.408Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://dev.ietf.org
- Size: 123 KB
- Stars: 1
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sandbox Status
Status Landing Page for Sandbox Environments
https://dev.ietf.org
## Project Definitions
The list of projects to display is defined in `server/data.json`.
## Deployment
On the server, create a new container with image `ghcr.io/ietf-tools/sandbox-status:latest`\
and bind `/var/run/docker.sock` from the host to the same path inside the container.The app listens on port `3000` by default.
## Development
### Server
Run in dev mode:
```bash
cd server
yarn
yarn dev
```Run in production mode:
```
node index.js
```### Client
Run in dev mode:
```bash
cd client
yarn
yarn dev
```Build for production:
```
yarn build
```