Peace COrP
Installation
Dependencies
- Download and install the latest LTS Node.js version
- Verify that Node is installed in your Command Line Interface (CLI):
$ node -v && npm -v
- Install Yarn globally with the Node Package Manager (NPM) installed
$ npm install -g yarn
Repository
- Clone this repository
- Navigate to Development directory in your CLI
$ cd code/Development
- Install the repository dependencies with Yarn in repository root.
$ yarn install
- Create a symbolic link to
node_modules
directory in repository root.
$ ln -s ./node_modules ./../../node_modules
- Build the project
$ npm run build
- Run the server
$ npm start
- Navigate to the path indicated in the CLI.
Reference
Repositories
Articles
JavaScript Rules
Draft
Some
Integrated Development Environments (IDEs) and source code editors works better
if node_modules
directory is there.
Note: If you see a file named yarn.lock
in the root, you executed the command wrong.
Delete the file, ensure that you are in Development
directory and try again.