Welcome to the documentation of all new and experimental things we're working on at Momentum. This is a place to help explain and better reference some of the bigger development journeys taken. In particular, programs that extend the boundaries of what is normally done in Universe.
# How to contribute
This site was created using VuePress (opens new window). The repository is stored in a private github at nlehmanDLC/momentum-vuepress (opens new window). If you would like access please email Nathan Lehman.
# Prerequisites
You need to have git and Node.js (opens new window) installed on your local development computer.
# Installation
- Clone the repository
git clone https://github.com/nlehmanDLC/momentum-vuepress.git
- Go to the repository
cd momentum-vuepress
- Serve the site in the local server
npm run docs:dev
# Adding documentation
All documentation is written in markdown. Just add the .md to the appropriate place inside /docs/. You may need to create a new folder if you are starting a new category.
Once you have your .md in place, be sure to add it to the sidebar table of contents in the config.js file. Any changes to the config.js file will require a restart of the local dev server to see the changes.
# Publishing changes
- Commit your changes
git add .
git commit -m "some commit message"
- Push to the repository
git push origin master