Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nightscout/wearenotwaiting.github.io
WeAreNotWaiting portal page
https://github.com/nightscout/wearenotwaiting.github.io
Last synced: about 15 hours ago
JSON representation
WeAreNotWaiting portal page
- Host: GitHub
- URL: https://github.com/nightscout/wearenotwaiting.github.io
- Owner: nightscout
- Created: 2018-05-29T17:20:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-14T08:21:15.000Z (over 4 years ago)
- Last Synced: 2024-11-09T02:40:00.591Z (about 2 months ago)
- Size: 705 KB
- Stars: 2
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WeAreNotWaiting
This page will act as a portal page to various WeAreNotWaiting projects. Stay tuned!
## Contributing
To suggest changes, fork this repository, edit the files, and submit your changes as a pull request.
The developer discussion of Nightscout happens on our Discord channel at https://discord.gg/zg7CvCQ
### Previewing Changes
To preview your work as you edit you must set up two python packages that are used to create this site using [MkDocs](http://www.mkdocs.org/). They are `mkdocs`, and `mkdocs-bootswatch`.Review [Properly Installing Python](http://docs.python-guide.org/en/latest/starting/installation/) for help getting Python installed. MkDocs works with Python 2.7, 3.3+, and pypy.
* Install python modules
```bash
$ cd
$ pip install -r requirements.txt
```* Run mkdocs server locally
```bash
$ cd
$ mkdocs serve
```* Preview docs in browser. Most changes will update automatically as you edit. Configuration and navigation changes will require restarting the mkdocs server.
* Optionally, you can share the preview with others by uploading them to your repository's `gh-pages` branch
```bash
$ mkdocs gh-deploy
```