This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> default: gpg: | |
==> default: keyring `/tmp/tmp57ztgbxe/secring.gpg' created | |
==> default: gpg: | |
==> default: keyring `/tmp/tmp57ztgbxe/pubring.gpg' created | |
==> default: gpg: | |
==> default: requesting key E5267A6C from hkp server keyserver.ubuntu.com | |
==> default: gpg: | |
==> default: /tmp/tmp57ztgbxe/trustdb.gpg: trustdb created | |
==> default: gpg: | |
==> default: key E5267A6C: public key "Launchpad PPA for Ondřej Surý" imported |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "--- Add PHP Apt Repository ---" | |
sudo add-apt-repository ppa:ondrej/php | |
echo "--- Add Ubuntu (for MySQL) Apt Repository ---" | |
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty universe' | |
echo "--- Update Apt Repositories ---" | |
sudo apt-get update | |
echo "--- Install Apt Packages ---" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant@branch:/$ sudo systemctl status nginx.service | |
● nginx.service - A high performance web server and a reverse proxy server | |
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled) | |
Active: active (running) since Fri 2017-10-20 17:27:30 UTC; 2min 37s ago | |
Main PID: 3049 (nginx) | |
CGroup: /system.slice/nginx.service | |
├─3049 nginx: master process /usr/sbin/nginx -g daemon on; master_process on | |
├─3050 nginx: worker process | |
└─3051 nginx: worker process |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
entry : __dirname + '/app/index.js', | |
module : { | |
loaders: [ | |
{ | |
test: /\.js$/, | |
exclude: /node_modules/, | |
loader: 'babel-loader' | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ERROR: | |
ERROR in ./app/index.js | |
Module parse failed: /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/js/com_oauthmanager/app/index.js Unexpected token (6:16) | |
You may need an appropriate loader to handle this file type. | |
| var App = require('./component/App'); | |
| | |
| ReactDOM.render(<App />, document.getElementById('oauth-manager')); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ERROR in /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass | |
Module parse failed: /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass Unexpected character '@' (1:0) | |
You may need an appropriate loader to handle this file type. | |
| @import "bourbon/bourbon"; | |
| @import "base/base"; | |
| | |
@ ./app/component/App.js 5:0-47 | |
@ ./app/index.js | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ERROR in /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass | |
Module build failed: | |
.oauth-manager-container { | |
^ | |
Invalid CSS after "...ger-container {": expected "}", was "{" | |
in /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass (line 4, column 27) | |
Error: | |
.oauth-manager-container { | |
^ | |
Invalid CSS after "...ger-container {": expected "}", was "{" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ERROR | |
ERROR in ./app/index.js | |
Module parse failed: /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/js/com_oauthmanager/app/index.js Unexpected token (6:16) | |
You may need an appropriate loader to handle this file type. | |
| var App = require('./component/App'); | |
| | |
| ReactDOM.render(<App />, document.getElementById('oauth-manager')); | |
//WEBPACK.CONFIG.JS | |
const ExtractTextPlugin = require("extract-text-webpack-plugin"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js!/home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass | |
Module build failed: | |
$base-font-family: $font-stack-system; | |
^ | |
Undefined variable: "$font-stack-system". | |
in /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/base/_variables.scss (line 2, column 20) | |
Error: | |
$base-font-family: $font-stack-system; | |
^ | |
Undefined variable: "$font-stack-system". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm run build | |
> [email protected] build /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/js/com_oauthmanager | |
> webpack --progress --colors --watch --display-error-details | |
0% compiling | |
Webpack is watching the files… | |
Hash: adb43be39ed04e0ec5c3 | |
Version: webpack 3.7.1 |