After installing these two packages as we need them for deploy:
npm i now -g
npm i serve
follow these steps:
Run this command and it will give you list of in installed packages:
code --list-extensions | xargs -L 1 echo code --install-extension
I have this packages:
code --install-extension christian-kohler.path-intellisense
{ | |
"name": "Babel with Nodemon", | |
"version": "1.0.0", | |
"description": "", | |
"main": "public/index.js", | |
"scripts": { | |
"start": "node ./public/index.js", | |
"start:dev": "nodemon ./public/index.js", | |
"clean": "rm -rf dist", | |
"build": "npm run clean && mkdir dist && babel app -d dist --copy-files", |
function doubleMe(name, x) { | |
console.log('I am running ' + name); | |
return new Promise(resolve => { | |
setTimeout(() => { | |
resolve(x * 2); | |
console.log('hoooo'); | |
}, 2000); | |
}); | |
} |
Composer autoloader
vendor/autoload.php
phpunit.xml
in the current project for the default configuration filephp.ini
to make it work with PHPStorm[XDEBUG]
zend_extension = C:\xampp\php\ext\php_xdebug-2.5.4-7.1-vc14.dll
xdebug.remote_enable = true
xdebug.idekey = PHPSTORM
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# https://www.nginx.com/resources/wiki/start/ | |
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ | |
# https://wiki.debian.org/Nginx/DirectoryStructure | |
# | |
# In most cases, administrators will remove this file from sites-enabled/ and | |
# leave it as reference inside of sites-available where it will continue to be | |
# updated by the nginx packaging team. |