KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
ecommerce
★ 77
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
impression
:
👀Element view notifier
Antiforgery
:
[Archived] AntiForgery token feature for ASP.NET Core. Project moved to https://github.com/aspnet/AspNetCore
Google-Maps-BottomSheet
:
A BottomSheetBehavior framework mirroring Google Maps'
buildkite-agent-metrics
:
A command-line tool (and Lambda) for collecting Buildkite agent metrics
security-key
:
iOS SEP U2F
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ecommerce
?
Download (.md)
# Projeto E-commerce Projeto desenvolvido do zero no [Curso de PHP 7](https://www.udemy.com/curso-completo-de-php-7/) disponível na plataforma da Udemy e no site do [HTML5dev.com.br](https://www.html5dev.com.br/curso/curso-completo-de-php-7). Template usado no projeto [Almsaeed Studio](https://almsaeedstudio.com) ## Como usar ### Clone ```sh git clone https://github.com/hcodebr/ecommerce.git; cd ecommerce; ``` ### Instalar dependencias ```sh composer update; ``` ### Subir banco de dados mysql no docker ```sh docker compose up -d --build; ``` ### Parâmetros para Host Virtual ```conf <VirtualHost *:80> ServerAdmin webmaster@hcode.com.br DocumentRoot "C:/users/saulo/OneDrive/Documentos/Github/meus-cursos/ecommerce" ServerName www.hcodecommerce.com.br ErrorLog "logs/dummy-host2.example.com-error.log" CustomLog "logs/dummy-host2.example.com-access.log" common <Directory "C:/users/saulo/OneDrive/Documentos/Github/meus-cursos/ecommerce"> Require all granted RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [QSA,L] </Directory> </VirtualHost> ```