Repo for the http://www.opentranslatorstothings.org site. For general discussions around Open Translations to Things, please use the issue list in this repo. Otherwise, use the associated issues list of each repo on GitHub/OpenT2T.
This README will help get you started developing in this repo.
Get your dev environment set up (PC or Mac):
- Install node.js and npm
- Install Git
- Install your favorite IDE, e.g. Visual Studio Code
We use Bower as a package manager. Bower is a command line utility. Install it globally with npm. Bower requires node, npm and git.
$ npm install -g bower
Next, clone this repo to your local machine to get started. Navigate to the directory where you want to clone the repo to locally, then run:
$ git clone https://github.com/opent2t/opent2t.github.io.git
You will need to install various dependencies to help in your dev workflow, since these are not in git. The development process is driven by node, and the following command will install the dev dependencies (e.g. a development server).
$ npm install
Congratulations, you are now set up for the basic development workflow! Just run:
$ gulp
The browser will launch, with the site hosted locally. As you make changes to the source, the app will live-reload in the browser to reflect your changes.
Here are some workflows you might find useful during development:
- gulp : runs the dev web server (with live reload)
- bower install component-name --save : downloads and installs a component, which can be used in the site
Made any changes we should consider? Send us a pull request! Check out this article on how to get started.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.