Make sure you have yarn
and gridsome
installed globally.
For more details:
Yarn
Gridsome
Clone the repo and run yarn
in the root folder.
Run gridsome develop
. The default port would be 8080
and you can visit your local instance at http://localhost:8080/
To add a Vulnerability post, add a markdown file to ./vulnerabilities
. Make sure the .md
file has all of the required metadata & content. You can take a look at the rest of the .md
files in the folder and figure the metadata & content convention.
To add a Malicious Package
item, just add an object to the JSON array in src/malicious/malicious-data.json
. Same here - pay attention to the object structure and add an object with the exact same structure. Make sure to add your Malicious Package
object in the right place according to its date. The first object in the array is the one with the latest date.
Any change to the remote main
branch will trigger a deploy action. The action can be edited here: .github/workflows/main.yml
. If you don't wish to trigger the deployment on your commit to main
, just include this string: [skip actions]
in your commit message. For example:
git commit -m "update readme file [skip actions]"
.