Setting Up with Linux ( I'm using SOLUS ) A linux distro
- First install LinuxBrew derived from Homebrew
that is the website
- Then install php, composer and npm from there.
- Just use laravel-valet ?
var webpack = require('webpack') | |
var path = require('path') | |
module.exports = { | |
entry : "./src/app.js", | |
output : | |
{ | |
path : path.resolve(__dirname,'./dist/js'), | |
filename : 'bundle.js' | |
}, |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Main scss file | |
// fonts | |
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Slab'); | |
@import "node_modules/bulma/sass/utilities/initial-variables.sass"; | |
@import 'var.scss'; | |
@import 'node_modules/bulma/bulma.sass'; | |
Setting Up with Linux ( I'm using SOLUS ) A linux distro
that is the website
test -d ~/.linuxbrew && PATH="$HOME/.linuxbrew/bin:$HOME/.linuxbrew/sbin:$PATH" | |
test -d /home/linuxbrew/.linuxbrew && PATH="/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:$PATH" | |
test -r ~/.bash_profile && echo "export PATH='$(brew --prefix)/bin:$(brew --prefix)/sbin'":'"$PATH"' >>~/.bash_profile | |
echo "export PATH='$(brew --prefix)/bin:$(brew --prefix)/sbin'":'"$PATH"' >>~/.profile |
$ git remote rm origin | |
$ git remote add origin [email protected]:aplikacjainfo/proj1.git | |
$ git config master.remote origin | |
$ git config master.merge refs/heads/master |
I am on version Laravel 5.5
MIX_APP_URL="${APP_URL}"
php artisan config:cache