Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hemicharly/modulo_crud_inventario
modulo_crud_inventario
https://github.com/hemicharly/modulo_crud_inventario
Last synced: 14 days ago
JSON representation
modulo_crud_inventario
- Host: GitHub
- URL: https://github.com/hemicharly/modulo_crud_inventario
- Owner: hemicharly
- Created: 2019-07-09T18:22:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T04:26:39.000Z (about 2 years ago)
- Last Synced: 2023-03-05T05:49:42.453Z (almost 2 years ago)
- Language: PHP
- Size: 2.25 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Configurando Ambiente de desenvolvimento, com sistema operacional Linux Ubuntu
# Instalando os pacotes no ubuntu:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php7.2 php7.2-common php7.2-cli php7.2-fpm apache2 -y
sudo apt-get install libapache2-mod-php7.2 php7.2-xml php7.2-opcache php7.2-mbstring php7.2-zip -y
sudo apt-get install php7.2-mysql mysql-server-5.7 mysql-client-5.7 -y
sudo a2enmod php7.2
# Framework Laravel
versão: 5.8
# Instalando composer verifique o link:
https://getcomposer.org/download/# Criando database no mysql:
create database base;# Configurando a comunicação do projeto ao database mysql no arquivo .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=base
DB_USERNAME=username
DB_PASSWORD=password# Executando migrate no projeto para criar as tabelas:
php artisan migrate:fresh# Instando o nodejs verifique o link:
https://nodejs.org/en/download/# Instalando as dependências:
npm install yarn -g
yarn
yarn dev# Iniciando a aplicação:
yarn start