Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/u-c-s/u-c-s.github.io
Built with Zola, Solid.js and esbuild
https://github.com/u-c-s/u-c-s.github.io
blog concurrently esbuild scss solid typescript website zola zola-bin
Last synced: about 1 month ago
JSON representation
Built with Zola, Solid.js and esbuild
- Host: GitHub
- URL: https://github.com/u-c-s/u-c-s.github.io
- Owner: U-C-S
- License: mit
- Created: 2020-04-27T10:35:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-19T05:05:39.000Z (about 1 year ago)
- Last Synced: 2024-05-01T16:29:54.286Z (7 months ago)
- Topics: blog, concurrently, esbuild, scss, solid, typescript, website, zola, zola-bin
- Language: SCSS
- Homepage: https://uchanakya.netlify.app/
- Size: 1.03 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Personal Website of Chanakya
### Built with:
- [Zola](https://github.com/getzola/zola) - A Static Site Generator, written in Rust
- [TypeScript](https://www.typescriptlang.org/) - Strongly typed language that builds on JavaScript
- [Solid.js](https://www.solidjs.com/) - A declarative and efficient JavaScript library for building UIs
- [esbuild](https://esbuild.github.io/) - An extremely fast JavaScript bundler
- [SCSS](https://sass-lang.com) - CSS Preprocessor## Local Environment Setup:
- You need to install - `nodejs >v16` , `git` and `vscode`
- Clone this Repository into your PC and In the cloned directory, use the following commands```sh
npm install # To install all the project dependencies
npm run develop # To start a local Dev Server which opens the site directly in the browser
```**Note:** This project uses [zola-bin](https://www.npmjs.com/package/zola-bin), not the official zola binaries. This makes it easier to develop and deploy.
Directory Structure
Similar to every site created using `Zola`, but adds 2 extra directories - `src`,`bin` while not using `sass` directory
| Directory | What it contains |
| --------- | --------------------------------------------------------------------------------------- |
| bin | DevOps - build scripts including code bundling, running zola and building static site |
| content | Content - Markdown files used by the tera templates |
| src \* | Json, Sass and TypeScript files that will be sent to static folder during build process |
| static | Files in this are directly copied to output folder during the build/develop process |
| templates | Contains the Tera (Zola templating language) template files |\* = The Json files will be used by Templates while sass and ts files will be compiled to css and js and used as static files for the website