https://github.com/bschwind/website-template
A github template for creating simple static websites
https://github.com/bschwind/website-template
Last synced: 27 days ago
JSON representation
A github template for creating simple static websites
- Host: GitHub
- URL: https://github.com/bschwind/website-template
- Owner: bschwind
- Created: 2022-01-23T00:38:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-26T01:12:57.000Z (about 4 years ago)
- Last Synced: 2025-07-13T10:39:44.220Z (11 months ago)
- Language: HTML
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# website-template
## Developing
Run a web server in this project directory and access `index.html` in order to test your code. There are no build steps necessary.
As an example, serving with [miniserve](https://crates.io/crates/miniserve):
```sh
$ cargo +nightly install miniserve
$ miniserve -p 1234 --index index.html .
```
## Format Code
### Install `prettier`
```sh
yarn global add prettier
or
npm install --global prettier
```
### Format
```sh
$ prettier --write .
```