Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allienx/arworldtravels.com
A travel site built with Hugo and hosted by Netlify.
https://github.com/allienx/arworldtravels.com
Last synced: 5 days ago
JSON representation
A travel site built with Hugo and hosted by Netlify.
- Host: GitHub
- URL: https://github.com/allienx/arworldtravels.com
- Owner: allienx
- Created: 2018-01-19T15:37:36.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T21:48:06.000Z (almost 2 years ago)
- Last Synced: 2024-04-17T00:36:17.345Z (7 months ago)
- Language: HTML
- Homepage: https://travels.allienx.com
- Size: 19.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![arworldtravels-brand](brand/arworldtravels-brand.svg)
My girlfriend originally built a travel "blog" with [Wix](https://www.wix.com/) to keep some family and friends updated while we were doing some long-term traveling. It worked fine and was easy to update along the way. However, to connect a custom domain to the site we had to pay for a premium plan. I thought it would be nice to keep the site up and running even after our trip was over but didn't want to keep paying for the premium plan. So I saw this as an opportunity to try and re-build the site manually and host it for free (the Wix site was also bloated and ran slow on bad networks).
## Tech Stack
* [Hugo](http://gohugo.io/)
* [Bootstrap](http://getbootstrap.com/)
* [Primer](https://primer.github.io/) (only [primer-markdown](https://github.com/primer/primer/tree/master/modules/primer-markdown))## Development Tools
* [Gulp](https://gulpjs.com/)
* [Webpack](https://webpack.js.org/)
* [Babel](https://babeljs.io/)
* [Sass](http://sass-lang.com/)
* [Yarn](https://yarnpkg.com/en/)## Favicon
Generated with [https://realfavicongenerator.net/](https://realfavicongenerator.net/).
## Local Development
Install [Hugo](https://gohugo.io/getting-started/installing).
Install [Node.js](https://nodejs.org) and [Yarn](https://yarnpkg.com/en/docs/install).
Install dependencies:
```sh
yarn install
```Install `gulp-cli` globally to run tasks:
```sh
yarn global add gulp-cli# Build site and start a dev server. Outputs to dev/
gulp server# Run production build. Outputs to dist/
gulp deploy
```