0% found this document useful (0 votes)
12 views4 pages

INSTALLATION MANUAL

The EPAT Project Installation Manual outlines the requirements and steps needed to install and configure the EPAT application, including the installation of Meteor, Git, MongoDB, and NVM. It provides detailed instructions for setting up the environment and configuring development modes in the config.js file. Additionally, it includes guidance for Windows users on installing and using NVM to manage Node.js versions.

Uploaded by

tathanprestige
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views4 pages

INSTALLATION MANUAL

The EPAT Project Installation Manual outlines the requirements and steps needed to install and configure the EPAT application, including the installation of Meteor, Git, MongoDB, and NVM. It provides detailed instructions for setting up the environment and configuring development modes in the config.js file. Additionally, it includes guidance for Windows users on installing and using NVM to manage Node.js versions.

Uploaded by

tathanprestige
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

EPAT PROJECT INSTALLATION MANUAL

Requirements

• Node
• Node Version Manager (NVM)
• Yarn
• NPM
• Git
• MongoDB
• Robo 3T Mongo

1.- Run in your terminal the following command to install Meteor

• NPX meteor or npm install -g meteor

2.- git clone https://gitlabe2.ext.net.nokia.com/nsndev/epat-handover.git

• cd epat-handover

3.- npm install

4.- meteor run

5.- After download EPAT-portal database. To restore database in your local


machine execute the follow command:

• mongorestore -h 127.0.0.1:3001 -d meteor /path-downloaded-database/cria

Environment configuration

To enable the development modes you must go to the config.js file located in the
path lib/1/config.js and alternate between environments.

// Test configuration

config.DEVEL_MODE = false;

config.TEST_MODE = true;
// Local configuration

config.DEVEL_MODE = true;

config.TEST_MODE = false;

If you use Windows as the operating system, verify in the environment


variables that meteor is enabled.
In case of conflict with the version of Node you can use nvm

Here are the steps to install NVM (Node Version Manager) on Windows:

1. Download NVM for Windows

• Go to the nvm-windows releases page on GitHub.


• Download the nvm-setup.zip file (latest stable version).
• Extract the .zip file and run the installer nvm-setup.exe.

2. Install NVM

• Run the installer and follow the instructions.


• Choose the directory where you want to install NVM. The installer will
suggest a default directory.
• Specify the directory where Node.js versions will be installed.

3. Configure NVM

• Once NVM is installed, open a PowerShell or Command Prompt.


• Verify the installation by running the following command:

nvm version

If everything is correct, it should display the NVM version.

4. Install and Use Node.js with NVM

• To install a specific version of Node.js, use:

nvm install <version>

For example, to install version 14.17.0: nvm install 14.17.0


• To use a specific version of Node.js, run:

nvm use <version>

• To verify the active version of Node.js, use:

node -v

You might also like