Main branch served at: https://appliedzkp.org/
This is the React re-write of the PSE website, formally just a landing page.
npm install
npm run start serves a development server at http://localhost:8081
The components live under /src/components.
All the projects are stored in the projects.json file in /src/data/
Here is an example of a project's entry:
{
"name": "TLS Notary",
"short_name": "TLSN",
"description": "Black Magic",
"long_description": "Black Magic",
"image": "tlsn.png",
"links": [
{
"github": "https://github.com/tlsnotary/tlsn"
},
{
"discord": "https://discord.gg/EjpvcEaqkh"
}
]
}Which results in this project card:
name is the name of the project, and short_name is the name that will be used for a placeholder image if an image isn't included or can't be found.
description is the description of the project in roughly the size of a tweet (so it fits on the project card), and long_description is the description that will be used for the project's page/pop out card (in the works now).
Project logos/images are stored in /src/images and the file name needs to be listed in the project's entry in projects.json as "image": "filename.png".
Links can be website, github, discord, twitter, or telegram. If you want more options like that added (like Reddit for example), please create an issue.
Create an issue and tell us the idea!
Feel free to fork this repo and make a pull request to the dev branch.
- When a pull request or push is made to the
devbranch, github actions builds a static/production version of the site to thegh-pages-devbranch. - Once changes have been verified on the
gh-pages-devbranch, thedevbranch is merged intomasterwhere github actions builds and deploys a production version of the site togh-pages gh-pagesis served at http://projects.appliedzkp.org
