Last active
May 30, 2020 13:30
-
-
Save baciotti/1f46f0692dac96877bf9a25c047c4aa2 to your computer and use it in GitHub Desktop.
Configurações no Ubuntu Bash do Windows 10 para poder instalar o Code Igniter via composer
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
# --------------------------------------------------------------------------------------- | |
# Configurações para conseguir instalar o Code Igniter 4 no Ubuntu System do Windows 10 | |
# Tiago Bacciotti Moreira - 30/05/2020 | |
# --------------------------------------------------------------------------------------- | |
# Já tenho instalado o Xampp em minha máquina Windows | |
# Atualiza fonte de pacotes e a distro | |
sudo apt-get update | |
sudo apt-get upgrade | |
# Instalei composer, git e ncftp | |
# git e ncftp opcional | |
sudo apt install composer | |
sudo apt-get install ncftp | |
sudo apt-get install git | |
# Quando fui executar composer foi pedindo algumas libs | |
# Tá tudo aqui, instalei o apache2 também. Depois vou remover o xampp | |
# Reuni tudo em um único install | |
sudo apt-get install ext-curl curl apache2 php php-curl php-intl php-xml php-mbstring zip unzip php-zip | |
# Para criar o app | |
composer create-project codeigniter4/appstarter teste |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@bacciotti