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
| sudo apt update -y && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean -y | |
| # --------------------------------------------------------------------------------------------------------------------------- # | |
| # must-have dependencies | |
| sudo apt install -y flatpak gufw git-all ca-certificates curl zsh xclip bat unzip build-essential libffi-dev libyaml-dev postgresql libpq-dev libreadline-dev libz-dev wkhtmltopdf | |
| git version | |
| # --------------------------------------------------------------------------------------------------------------------------- # | |
| # enabling firewall |
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
| #Descargar una copia limpia de WordPress en el directorio the_project.dev con todos los textos en español mexicano (es_MX), listo para ser configurado | |
| wp core download --path=the_project.dev --locale=es_MX | |
| cd the_project.dev | |
| #Configurar el archivo wp-config para conexión a base de datos | |
| wp config create --dbname=the_project --dbuser=user_root --dbpass=password --dbhost=localhost --dbprefix=wp_ --dbcharset=utf8 --dbcollate="" --force | |
| cp wp-config-sample.php wp-config.php | |
| chmod 644 wp-config.php |
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 'package:flutter/material.dart'; | |
| import 'package:flutter_widget_from_html_core/flutter_widget_from_html_core.dart'; | |
| class FlutterWidgetFromHtml extends StatefulWidget { | |
| const FlutterWidgetFromHtml({ | |
| Key? key, | |
| this.width, | |
| this.height, | |
| this.stringHtml, |
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
| //Fabián Jair Torres Maldonado | |
| //https://codelabs.developers.google.com/codelabs/flutter-webview#0 | |
| import 'dart:io'; // Add this import. | |
| import 'package:flutter/material.dart'; | |
| import 'package:webview_flutter/webview_flutter.dart'; |
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
| DEPLOY RAILS 6 - HEROKU | |
| https://strapi.io/documentation/developer-docs/latest/deployment/heroku.html#heroku | |
| https://devcenter.heroku.com/articles/getting-started-with-rails6 | |
| https://www.md5hashgenerator.com/ | |
| rails new app -d postgresql | |
| cd app | |
| heroku login | |
| heroku create app |