-
Notifications
You must be signed in to change notification settings - Fork 11
Setup
These are the setup and contribution instructions for Windows users
Git: Download installer from https://git-scm.com/ Install using whatever settings you would like, as long as you make sure to choose the option that allows git to be accessible from the Windows Command Prompt.
Node and NPM: Download installer from https://nodejs.org/download/release/v8.16.1/. Download the appropriate .msi
file for Windows (node-v8.16.1-x64.msi for 64-bit or node-v8.16.1-x86.msi for 32-bit). Run the downloaded installer.
- Open a Windows Command Prompt wherever you would like to work on translationCore.
- Run the command
git clone https://github.com/unfoldingWord-dev/translationCore.git
, or you may clone your own fork. - Change directories to the repository directory and run the command
npm ci
to install all required Nodejs modules. -
npm run load-apps
will check out versioned submodule commit - Compile and run the project by running
npm run start
These are the setup and contribution instructions for Mac OS users
Git: To get full Download and install X-Code Or to save time, just the necessary command line tools
Node and NPM: Download installer from https://nodejs.org/download/release/v8.16.1/node-v8.16.1.pkg. Right click on downloaded pkg file and select open.
- Open a Terminal wherever you would like to work on
translationCore
. - Run the command
git clone https://github.com/unfoldingWord-dev/translationCore.git
, or you may clone your own fork. - Change directories to the repository directory and run the command
npm ci
to install all required Nodejs modules. -
npm run load-apps
will check out versioned submodule commit - Compile and run the project by running
npm start
To make a MacOs install for translationCore app, do npm run release-osx
. When done, the output will be in npm release
folder.
The following scripts worked on a Linux Mint 18.2 release.
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
nvm install 8.16.1
git clone [email protected]:unfoldingWord-dev/translationCore.git
cd translationCore
npm i -g [email protected]
npm install
npm run load-apps
Then, run npm test
to see if the tests pass, or run npm run start
to get the app going.