chore: update README and package.json with project info
- Replace scaffold README with project-specific documentation - Rename package to fitlabs.dev, bump to v1.0.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
77
README.md
77
README.md
@@ -1,43 +1,50 @@
|
|||||||
# Astro Starter Kit: Minimal
|
# FIT Labs — fitlabs.dev
|
||||||
|
|
||||||
```sh
|
Landing page de FIT Labs, la incubadora de innovacion de FactorIT.
|
||||||
npm create astro@latest -- --template minimal
|
|
||||||
|
## Stack
|
||||||
|
|
||||||
|
- **Astro 6** — Static site generator
|
||||||
|
- **Tailwind CSS 4** — Styling
|
||||||
|
- **Docker + nginx** — Deployment
|
||||||
|
- **Coolify** — Hosting
|
||||||
|
|
||||||
|
## Desarrollo
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install
|
||||||
|
npm run dev # http://localhost:4321
|
||||||
|
npm run build # Output en ./dist/
|
||||||
|
npm run preview # Preview del build
|
||||||
```
|
```
|
||||||
|
|
||||||
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
|
## Deploy
|
||||||
|
|
||||||
## 🚀 Project Structure
|
El sitio se despliega en Coolify desde el repo de Gitea.
|
||||||
|
|
||||||
Inside of your Astro project, you'll see the following folders and files:
|
```bash
|
||||||
|
git push origin master
|
||||||
```text
|
# Deploy automatico o manual desde Coolify dashboard
|
||||||
/
|
|
||||||
├── public/
|
|
||||||
├── src/
|
|
||||||
│ └── pages/
|
|
||||||
│ └── index.astro
|
|
||||||
└── package.json
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
|
## Estructura
|
||||||
|
|
||||||
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
|
```
|
||||||
|
src/
|
||||||
Any static assets, like images, can be placed in the `public/` directory.
|
layouts/Layout.astro # Base HTML, SEO, fonts
|
||||||
|
components/
|
||||||
## 🧞 Commands
|
Navbar.astro # Navbar sticky con menu mobile
|
||||||
|
Hero.astro # Hero con gradient mesh animado
|
||||||
All commands are run from the root of the project, from a terminal:
|
About.astro # Seccion "Que es FIT Labs"
|
||||||
|
Capabilities.astro # 5 capacidades de IA
|
||||||
| Command | Action |
|
Differentiator.astro # Diferenciador con valores
|
||||||
| :------------------------ | :----------------------------------------------- |
|
Contact.astro # CTA con mailto
|
||||||
| `npm install` | Installs dependencies |
|
Footer.astro # Footer con links
|
||||||
| `npm run dev` | Starts local dev server at `localhost:4321` |
|
pages/index.astro # Pagina principal
|
||||||
| `npm run build` | Build your production site to `./dist/` |
|
styles/global.css # Tailwind + animaciones custom
|
||||||
| `npm run preview` | Preview your build locally, before deploying |
|
public/
|
||||||
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
|
LogoFIT1.png # Logo FIT Labs
|
||||||
| `npm run astro -- --help` | Get help using the Astro CLI |
|
favicon.svg # Favicon
|
||||||
|
nginx/nginx.conf # Config nginx para produccion
|
||||||
## 👀 Want to learn more?
|
Dockerfile # Multi-stage build
|
||||||
|
```
|
||||||
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "fitlabs-scaffold",
|
"name": "fitlabs.dev",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.1",
|
"version": "1.0.0",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=22.12.0"
|
"node": ">=22.12.0"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user