An open API service indexing awesome lists of open source software.

https://github.com/gridonic/gridonic.github.io

Gridonic showroom of open-source projects.
https://github.com/gridonic/gridonic.github.io

gridonic open-source projects showroom

Last synced: 4 months ago
JSON representation

Gridonic showroom of open-source projects.

Awesome Lists containing this project

README

          

Gridonic Open Source Projects



gridonic.ch
gridonic.github.io
@gridonic

## Demo
https://gridonic.github.io

## Development
Clone the repo and start the local dev server http://localhost:3000.
```sh
git clone git@github.com:gridonic/gridonic.github.io.git
cd gridonic.github.io
npm install
npm run dev
```

## Preview
The vite preview command will boot up static web server which serves the files from dist at http://localhost:4173.
```sh
npm run build
npm run preview
```

## Deployment
Deploy a new version to github pages
```sh
# create and push a new tag
git tag x.x.x
git push --tags
```

This script will merge the `main` branch into the `gh-pages` branch.
```sh
# run the deployment script
sh deploy.sh
```