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
| set nocompatible | |
| filetype indent plugin on | |
| syntax on | |
| set hidden | |
| set wildmenu | |
| set showcmd | |
| set hlsearch | |
| set ignorecase | |
| set smartcase | |
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
| import Vue from 'vue'; | |
| import Vuex from 'vuex'; | |
| import sinon from 'sinon'; | |
| import flushPromises from 'flush-promises'; | |
| import { createLocalVue, mount } from '@vue/test-utils'; | |
| import elementOnDemand from 'src/plugins/element-on-demand'; | |
| import ComponentName from './ComponentName'; | |
| import { modules } from 'src/store/index'; | |
| import { mapUse } from 'src/helpers'; |
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
| /Applications/XAMPP/xamppfiles/etc/my.cnf | |
| find the [mysqld] section, add one line: | |
| innodb_force_recovery = 1 | |
| then run | |
| sudo /Applications/XAMPP/bin/mysql.server start | |
| everything is ok again. |
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
| settings |
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
| grant all on *.* to 'root'@'%' identified by 'Parola'; |
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
| mysql: | |
| https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-14-04 | |
| phpmyadmin: | |
| sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf | |
| sudo a2enconf phpmyadmin | |
| sudo service apache2 reload |
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
| http://getskeleton.com/ | |
| http://purecss.io/ | |
| https://www.myresponsee.com/ | |
| http://getbase.org/ |
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: "./app/components/Main.js", | |
| output: { | |
| filename: "public/bundle.js" | |
| }, | |
| module: { | |
| loaders: [ | |
| { | |
| test: /\.jsx?$/, | |
| exclude: /(node_modules|bower_components)/, |
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
| systemLog: | |
| destination: file | |
| path: c:\data\log\mongod.log | |
| storage: | |
| dbPath: c:\data\db |
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
| app.use(function(req, res, next){ | |
| res.header('Access-Control-Allow-Origin','*'); | |
| res.header('Access-Control-Allow-Method','GET,PUT,DELETE,POST'); | |
| res.header('Access-Control-Allow-Headers','Content-Type'); | |
| next(); | |
| }); |
NewerOlder