https://github.com/arnellebalane/isthisgovphsitesecure.com
Show which gov.ph sites are secure and when their SSL certificates expire
https://github.com/arnellebalane/isthisgovphsitesecure.com
hacktoberfest vitejs vuejs3
Last synced: 3 months ago
JSON representation
Show which gov.ph sites are secure and when their SSL certificates expire
- Host: GitHub
- URL: https://github.com/arnellebalane/isthisgovphsitesecure.com
- Owner: arnellebalane
- License: mit
- Created: 2021-06-14T11:16:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T01:23:59.000Z (7 months ago)
- Last Synced: 2024-10-30T03:56:57.666Z (7 months ago)
- Topics: hacktoberfest, vitejs, vuejs3
- Language: Vue
- Homepage: https://isthisgovphsitesecure.netlify.app
- Size: 611 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Is this gov.ph site secure?
Show which `gov.ph` sites are secure and when their SSL certificates expire

## Contributing
Thanks for your interest to contribute to this project! To get started, fork and clone this repository then run the following commands:
```bash
cd isthisgovphsitesecure.com# Install dependencies
npm ci# Run development server, http://localhost:3000
npm run dev# Build for production
npm run build# Fetch latest data
node scripts/update-data.js
```The sites are available in [`src/data/sites.json`](src/data/sites.json). If you want to add a new site, add the following JSON at the end of the array:
```json
{
"title": "",
"host": ""
}
```Then run the `scripts/update-data.js` script to fetch its certificate information and populate the `status` and `expiry` fields.
## License
[MIT License](license)