Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enflujo/enflujo-www
:elephant: Sitio principal del laboratorio EnFlujo. https://enflujo.com
https://github.com/enflujo/enflujo-www
colombia educacion laboratorio sitio-web-oficial
Last synced: 28 days ago
JSON representation
:elephant: Sitio principal del laboratorio EnFlujo. https://enflujo.com
- Host: GitHub
- URL: https://github.com/enflujo/enflujo-www
- Owner: enflujo
- Created: 2021-05-02T03:04:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T19:58:40.000Z (4 months ago)
- Last Synced: 2024-09-14T10:41:09.592Z (4 months ago)
- Topics: colombia, educacion, laboratorio, sitio-web-oficial
- Language: Astro
- Homepage: https://enflujo.com
- Size: 1.33 MB
- Stars: 3
- Watchers: 3
- Forks: 6
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sitio principal del Laboratorio EnFlujo
![Estilo Código](https://github.com/enflujo/enflujo-www/actions/workflows/estilo-codigo.yml/badge.svg)
![Despliegue](https://github.com/enflujo/enflujo-www/actions/workflows/despliegue.yml/badge.svg)
![Tamaño](https://img.shields.io/github/repo-size/enflujo/enflujo-www?color=%235757f7&label=Tama%C3%B1o%20repo&logo=open-access&logoColor=white)
![Licencia](https://img.shields.io/github/license/enflujo/enflujo-www?label=Licencia&logo=open-source-initiative&logoColor=white)Creado con [Astro](https://astro.build/)
## Instalación
Instalar dependencias:
```bash
yarn install
```## Desarrollo local
```bash
yarn dev
```Inicia un servidor local (con hot-reloading) en [localhost:3000](http://localhost:4321)
## Construir para producción
Exportar aplicación:
```bash
yarn build
```## Aplicar reglas de estilo al código
Para ver los errores de estilo:
```bash
yarn lint
```**¡IMPORTANTE!** - Antes de hacer push o PR, aplicar las reglas al código:
```bash
yarn lint:fix
```## Saltarse los procesos de Github Actions
En el mensaje del push incluir `[skip ci]`. [Explicación](https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/)
## Ejecutar acción de despliegue
Todos los `push` a la rama `main` activan el despliegue. También se puede ejecutar desde el terminal o cualquier comando externo siguiendo la estructura de: https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#create-a-repository-dispatch-event
```bash
curl \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer "\
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/enflujo/enflujo-www/dispatches \
-d '{"event_type":"despliegue"}'
```