Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/afcms/hexagone_projet_web
https://github.com/afcms/hexagone_projet_web
mysql php phpmyadmin studies
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/afcms/hexagone_projet_web
- Owner: AFCMS
- Created: 2024-05-27T08:55:36.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-06-10T09:42:43.000Z (5 months ago)
- Last Synced: 2024-10-10T22:16:37.309Z (about 1 month ago)
- Topics: mysql, php, phpmyadmin, studies
- Language: PHP
- Homepage:
- Size: 138 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hexagone Projet Web: GitHub Reviews
```shell
docker compose up
```| Service | URL |
|------------|-------------------------------|
| Apache | http://127.0.0.1:8000 |
| MySQL | mysql://127.0.0.1:6033/app_db |
| phpMyAdmin | http://127.0.0.1:8081 |## Azure Deployment (NOT WORKING YET)
### Azure CLI
```shell
az login
```### Azure Resource Group
```shell
az group create --location westeurope --name HexagoneProjetWeb
```### Azure Container Registry
```shell
az acr create --resource-group HexagoneProjetWeb --name hexaprojetweb --sku Basic
az acr login --name hexaprojetweb
```### Build Production Image
```shell
docker build --file prod.Dockerfile --tag hexagone-web-projet --load .
```### Push Production Image
```shell
docker tag hexagone-web-projet hexaprojetweb.azurecr.io/hexagone-web-projet
docker push hexaprojetweb.azurecr.io/hexagone-web-projet:latest
```### Azure App Service
```shell
az appservice plan create --name hexagone-projet-web --resource-group HexagoneProjetWeb --sku S1 --is-linux
az webapp create --resource-group HexagoneProjetWeb --plan hexagone-projet-web --name hexagone-projet-web --multicontainer-config-type compose --multicontainer-config-file compose.azure.yml
```### Delete Azure Resources
```shell
az group delete --name HexagoneProjetWeb
```