https://www.okami101.io/vuetify-admin/guide/laravel.html#installation laravel new projectname composer require okami101/laravel-admin / edit .env (mysql, SANCTUM_STATEFUL_DOMAINS etc) php artisan admin:install (all yes) php artisan storage:link php artisan migrate:fresh --seed (문제 발생시:composer install) (https://stackoverflow.com/questions/41209349/requirevendor-autoload-php-failed-to-open-stream..
#. Docker List $ docker version # cf. docker --version $ docker info # docker system info $ docker --help $ docker run hello-world $ docker images $ docker ps # cf. docker ps -a $ docker-machine ls # Oracle VM VirtualBox # Homedir : 사용자/.docker run docker container for ubuntu image docker container run $> docker container run ubuntu:latest /bin/echo 'Hello world' $> docker ps -a $> docker contai..
출처: https://www.codementor.io/@mecp/increasing-memory-ram-on-digitalocean-droplets-9um2mphxv sudo fallocate -l 4G /swapfile && sudo chmod 600 /swapfile && sudo mkswap /swapfile && swapon /swapfile && sudo echo "/swapfile none swap sw 0 0" >> /etc/fstab && sudo sysctl vm.swappiness=10 && sudo sysctl vm.vfs_cache_pressure=50 && sudo echo "vm.swappiness=10" >> /etc/sysctl.conf && sudo echo "vm.vfs_..
https://vuetifyjs.com/en/styles/spacing/ : 정렬와 여백을 조절한다 https://vuetifyjs.com/en/styles/typography/ : 텍스트 스타일 https://vuetifyjs.com/en/components/dividers/ : 구분자 https://vuetifyjs.com/en/components/grids/ : 그리드 정렬 https://vuetifyjs.com/en/styles/flex/ : flex 정렬 헬퍼 정리 ex) CSS Selector Tag(element) - Class - Id - Attribute CSS Position Static - Relative - fixed.- absolute CSS grid system center al..
https://stackoverflow.com/questions/24977516/catching-errors-in-javascript-promises-with-a-first-level-try-catch Catching Errors in JavaScript Promises with a First Level try ... catch So, I want my first level catch to be the one that handles the error. Is there anyway to propagate my error up to that first catch? Reference code, not working (yet): Promise = require('./framework/ stackoverflow...
#. Vue에서 v-if나 v-model등으로 출력중인 데이터가 변할경우 새로 바뀐 값이 바로바로 적용되어 진다 하지만 적용이 안되는 경우가 있다. (https://vuejs.org/v2/guide/reactivity.html#Change-Detection-Caveats) - Vue Class내 Data 항목에 감시하고자 하는 데이타항목을 할당해 준다. - Object나 Array의 내부항목이 변경될 경우 감지가 되지 않는다. - Vue.set(object, propertyName, value) (or vm.$set) - Vue.set(vm.items, indexOfItem, newValue)(or vm.$set) 으로 적용하거나 전체 Object나 Array 를 교체하여 적용시킨다 참고 https://..
vs code 플러그인 prettier은 vscode에디터가 저장할때 eslint-plugin-prettier/eslint-config-prettier package가 있어도 vs code의 prettier의 플러그인이 역할을 함으러서 삭제하면 안됨 https://github.com/nuxt/create-nuxt-app/issues/274 https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
https://www.youtube.com/watch?v=aircAruvnKk