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.
- Host: GitHub
- URL: https://github.com/gridonic/gridonic.github.io
- Owner: gridonic
- Created: 2016-12-13T20:01:18.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2022-07-27T12:42:07.000Z (almost 4 years ago)
- Last Synced: 2025-03-18T11:49:01.951Z (about 1 year ago)
- Topics: gridonic, open-source, projects, showroom
- Language: HTML
- Homepage: https://gridonic.github.io/
- Size: 224 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```