Installation
Intro
Congratulations! You are ready to start using Hybridplate. The installation process is very easy. Choose from Basic, Premium, and Extended licensing packages and get started. Installation scripts are based on npm and node modules that must already be installed on your computer.
Preconditions
- Node.js is installed, If not, visit https://nodejs.org/.
- MongoDB is installed, If not, visit https://mongodb.com/.
- Yarn is installed, If not, visit https://yarnpkg.com/.
Please make sure you downloaded the .zip file and extracted it using the correct password.
Getting started
note
For this guide, assume the extracted files are at '/hybridplateProject'
Navigate to the path to which you extracted the .zip and make sure the following files and folders exist, in accordance with the license you purchased:
- Basic License - 3 folders: client, servers, and mock data. 2 files: init.js and package.json
- Premium License - 3 folders: client, servers, and mock data. 2 files: init.js and package.json
- Extended License - 4 folders: admin, client, server, and mock data. 2 files: init.js and package.json
Open your terminal and navigate to the specific folder, for ex. to '/hybridplateProject'.
Run
npm i.Once the installation is complete, navigate to the server folder '/hybridplateProject/server' and run
npm run dev.
The server is now up and running and you can see that your terminal states: 'Server running on port 8000'.Open a second terminal window and navigate to the client folder '/hybridplateProject/client' and run
npm run start.
The client is now up and running and you can see that your terminal states: 'Localhost: http://localhost:3000'.Using your browser, navigate to ‘http://localhost:3000’ to see the client side up and running.
Using your favorite IDE-supporting JavaScript, open the root folder ‘/hybridplateProject’ and start editing your application.