In your command-line run the following commands:
brew doctorbrew update
| FROM ruby:2.6.3-alpine | |
| RUN apk add --update --no-cache bash build-base nodejs sqlite-dev tzdata postgresql-dev yarn | |
| RUN gem install bundler:2 | |
| WORKDIR /usr/src/app | |
| COPY package.json yarn.lock ./ | |
| RUN yarn install --check-files |
| brew install protobuf | |
| go get -u google.golang.org/grpc | |
| go get -u github.com/golang/protobuf/protoc-gen-go | |
| protoc -I=./api --go_out=plugins=grpc:./api ./api/hello.proto |
| $ = jQuery.noConflict(); | |
| function menuRespuesta(id){ | |
| var htmlTextArea = `<div class="c-wrap-menu b1"> | |
| <span class="c-open-menu"> | |
| <span class="fa fa-caret-down"></span> | |
| </span> | |
| <div class="c-menu-desplegable"> | |
| <h3 class="c-menu-title">Tipo de respuesta</h3> | |
| <ul class="c-menu-list"> |
In your command-line run the following commands:
brew doctorbrew update| UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
| UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl'); | |
| UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl'); | |
| UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl'); |