https://github.com/softwarepub/software-card
Software CaRD: A curation and reporting dashboard for compliant FAIR software publications
https://github.com/softwarepub/software-card
Last synced: 5 months ago
JSON representation
Software CaRD: A curation and reporting dashboard for compliant FAIR software publications
- Host: GitHub
- URL: https://github.com/softwarepub/software-card
- Owner: softwarepub
- Created: 2025-10-07T07:27:10.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-11-28T13:27:19.000Z (6 months ago)
- Last Synced: 2025-11-30T20:12:06.291Z (6 months ago)
- Language: JavaScript
- Size: 418 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Citation: CITATION.cff
Awesome Lists containing this project
README
# Software CaRD
Software CaRD: A curation and reporting dashboard for compliant FAIR software publications.
This repository hosts GitLab pages at:
These pages contain:
- an app that represents a future "Software CaRD dashboard" which runs in your browser
- an example validation report that can be loaded by the app
- an example curation view
- an example reporting view
You can navigate to the [CI pipelines](https://codebase.helmholtz.cloud/pape58/software-card-gitlab-test/-/pipelines)
and within any `pages` job click the URL below "Generating dashboard URL ...".
This will load the associated pipeline into your Software CaRD dashboard.
## Host the Pages Locally
To run the code, serve the `public` directory with a web server and navigate to .
With Python:
```bash
python -m http.server -d public -b 127.0.0.1 8000
```
With PHP:
```bash
php -S 127.0.0.1:8000 -t public
```