Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vizia/vizia-site
https://github.com/vizia/vizia-site
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vizia/vizia-site
- Owner: vizia
- Created: 2022-11-20T19:31:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-06T23:08:00.000Z (over 1 year ago)
- Last Synced: 2023-06-07T00:22:10.470Z (over 1 year ago)
- Language: Svelte
- Homepage: https://vizia.github.io/vizia-site/
- Size: 15.7 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vizia Site
This is the official repository containing the [Vizia](https://github.com/vizia/vizia) website found [here](TODO).
The website was created using the `create-svelte` template found [here](https://github.com/sveltejs/kit/tree/master/packages/create-svelte)
## ⚠️ Important Note ⚠️
This repository doesn't currently allow PRs because of it's rapidly evolving development and constant overhauls
## To-Do List:
- [ ] Update Landing Page to containg important information
- [ ] Fill FAQ section
- [ ] Fill About section
- [x] Fill Tutorial section
- [ ] Responsive design## Developing
Developing the website is pretty easy. Install the dependency manager `npm` (or `yarn`) and execute the following command:
```bash
npm run dev
```This will create a local server and, opening a tab on your browser, you will be able to view the website! Using the `--open` option allows to directly open the website in a new tab for you.
## Building
Once the changes are ready to take effect on the public website, all we have to do is execute the following command:
```bash
npm run build
```This will create the `/build/` folder, which is the folder that is linked to Github Pages.
You can also preview the production build with `npm run preview`.
You can find more information about how this build process works [here](https://kit.svelte.dev/docs/adapters).