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
# Ubuntu / Devian | |
## Development Installation Process | |
# Install git | |
sudo apt install git | |
- config | |
git config --global user.name "username" | |
git config --global user.email "[email protected]" |
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
# Installations | |
npm install --save-dev or yarn add tailwindcss -D | |
npm install --save-dev or yarn add ṕostcss autoprefixer -D | |
#Config File | |
Generate tailwind file using npx tailwind int tailwind.js | |
create postfix.config.js on your folder project | |
#copy and past to postfix config file | |
const tailwindcss = require('tailwindcss'); |
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
#!/bin/bash | |
echo "---- Iniciando instalacao do ambiente de Desenvolvimento PHP ---" | |
echo "--- Atualizando lista de pacotes ---" | |
sudo apt-get update | |
echo "--- Definindo Senha padrao para o MySQL e suas ferramentas ---" | |
DEFAULTPASS="deinir_senha" |
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
var gulp = require('gulp'); | |
var browserSync = require('browser-sync').create(); | |
var sass = require('gulp-sass'); | |
//Compilar sass em CSS & injetar no navegador | |
gulp.task('sass', function(){ | |
return gulp.src(['src/scss/bootstrap.scss', 'src/scss/*.scss']) | |
.pipe(sass()) | |
.pipe(gulp.dest("src/css")) | |
.pipe(browserSync.stream()); |
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
Para enviar um email usando a linha de commando use | |
To Send email by command line use | |
date | mail -s "Mail Test Postfix" [email protected] | |
------------------------------------------------------ | |
Para Listar a caixa ou saída do Postfix use o comando | |
To List Queue Box use | |
Mailq |
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
Siga os seguintes Passos <Follow this steps> | |
1 - No terminal copie e cole o comando abaixo para criar o arquivo | |
1 - < On terminal copy and paste this command line to create a file > | |
sudo vim /etc/postfix/sasl_passwd | |
2 - Insira as infomações de smtp e porta e senha | |
2 - < Insert your smtp account informations > | |
/etc/postfix/sasl_passwd | |
[smtp.gmail.com]:587 [email protected]:PASSWORD |