wonderdome-site/README.md

46 lines
1.0 KiB
Markdown
Raw Normal View History

2018-07-07 02:08:17 -04:00
# The Wonder Dome
This website serves as a tiny, little source of information about a specific tiny, little server sitting in a tiny, little house nestled in a tiny, little suburb of Charlotte, NC, USA, Earth.
You can see this site at: https://www.wonderdome.net/
## Installing
+ Requires: [git](https://git-scm.com/), [Node](https://nodejs.org/), [Gulp](http://gulpjs.com/), and a static web server (we recommend [nginx](https://nginx.org/)).
+ Clone from the git repo:
```shell
git clone https://git.itsericwoodward.com/eric/wonderdome-site.git wonderdome
```
2018-07-07 02:08:17 -04:00
+ Go into the directory for the site:
```shell
cd wonderdome
```
2018-07-07 02:08:17 -04:00
+ Install the required NPM libraries:
```shell
npm install
```
2018-07-07 02:08:17 -04:00
+ Put the site's base URI in a file called `base_uri` (or copy the supplied one, based on your chosen environment):
2018-07-07 02:08:17 -04:00
```shell
cp base_uri.production base_uri
```
2018-07-07 02:08:17 -04:00
+ Build the site
```shell
gulp build
```
2018-07-07 02:08:17 -04:00
+ The build command will output to the `www` directory.
+ Point the web server to the `www` directory.
+ Share and enjoy!