An open API service indexing awesome lists of open source software.

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

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 .
```