Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colinkiama/spider
Quickly generate a HTML5 site structure
https://github.com/colinkiama/spider
Last synced: 28 days ago
JSON representation
Quickly generate a HTML5 site structure
- Host: GitHub
- URL: https://github.com/colinkiama/spider
- Owner: colinkiama
- License: mit
- Created: 2021-11-27T03:37:51.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-08T04:14:56.000Z (almost 3 years ago)
- Last Synced: 2024-08-02T00:26:13.178Z (3 months ago)
- Language: Vala
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-vala - Spider - Quickly generate a HTML5 site structure. (CLI Tools / Weather)
README
# spider
Quickly generate a HTML5 site structure
## Building, Testing, and Installation
You'll need the following dependencies to build:
* meson
* valacRun `meson build` to configure the build environment and run `ninja` to build:
```Bash
meson build --prefix=/usr
cd build
ninja
```To install, use `ninja install`, then execute with `spider`:
```Bash
sudo ninja install
spider [options?] FOLDER_NAME
```**The Site structure:**
```
index.html
styles/
index.css
js/
index.js
```To include the css and js files into your site, please add -c and -j flags to the command respecitvely.
For example, to produce a site with html, js and css already setup, perform the following command:
```Bash
spider -c -j FOLDER_NAME
```