Setup instructions for the blogs:
!! The steps for preparing the calculators are pretty much the same, just skip the database part in the instructions.
PHP and Symfony:
-
Pull the project.
-
Start your MySQL Server from XAMPP or standalone.
-
Go to the root of the project and open a Command prompt / PowerShell window.
-
Execute “php composer.phar install” to restore its Composer dependencies.
-
Create the database with “php bin/console doctrine:database:create --if-not-exists” command.
-
All done!
JavaScript and Node.js
-
Pull the project.
-
Go to the root of the project and open a Command prompt / PowerShell window.
-
Start your MongoDB instance with the “mongod.exe --dbpath path/to/dbdir” command.
-
Run “npm install” to resolve its Node.js dependencies which are described in the package.json file.
-
All done!