https://github.com/ottemo/developer.ottemo.io
https://github.com/ottemo/developer.ottemo.io
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ottemo/developer.ottemo.io
- Owner: ottemo
- License: mpl-2.0
- Created: 2017-10-17T02:52:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-11T02:46:07.000Z (over 8 years ago)
- Last Synced: 2025-01-22T21:24:21.277Z (over 1 year ago)
- Language: JavaScript
- Size: 8.35 MB
- Stars: 0
- Watchers: 14
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# developer.ottemo.io
### Clone repo and setup locally
```bash
# install hugo
brew install hugo
# clone the repo
git clone git@github.com:ottemo/developer.ottemo.io
# intialize and download the themes and plugins
git submodule update --init --recursive # to init and grab all submodules
# to update the themes or plugins later use
git submodule update --recursive
```
### Run the local development server
```bash
# run with the current theme chosen
hugo server
```
Then browse to your [localhost](http://127.0.0.1:1313)
## Deploy to Firebase
### configure firebase connection
```
# install firebase tools
npm install -g firebase-tools
# authenticate to firebase using your ottemo creds
firebase login
```
### push local changes to firebase
Only do this if your PR is accepted and reviewed, please. This command pushes your changes to production.
```
hugo && firebase deploy
```