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
# Create rails app | |
gem install make_it_so | |
make_it_so rails <name> | |
rake db:create db:migrate db:test:prepare && rspec | |
# get NPM set up (make sure node is installed) | |
npm init | |
npm install --save babel-loader gulp webpack gulp-webpack react redux react-redux | |
touch webpack.config.js | |
vim webpack.config.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
version: '2' | |
services: | |
mysql: | |
image: bitnami/mysql:latest | |
container_name: MySQL | |
user: "0:0" | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: "mbstf" | |
MYSQL_AUTHENTICATION_PLUGIN: mysql_native_password |
OlderNewer