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
|
||||
npm create astro@latest -- --template minimal
|
||||
Landing page de FIT Labs, la incubadora de innovacion de FactorIT.
|
||||
|
||||
## 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:
|
||||
|
||||
```text
|
||||
/
|
||||
├── public/
|
||||
├── src/
|
||||
│ └── pages/
|
||||
│ └── index.astro
|
||||
└── package.json
|
||||
```bash
|
||||
git push origin master
|
||||
# Deploy automatico o manual desde Coolify dashboard
|
||||
```
|
||||
|
||||
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.
|
||||
|
||||
Any static assets, like images, can be placed in the `public/` directory.
|
||||
|
||||
## 🧞 Commands
|
||||
|
||||
All commands are run from the root of the project, from a terminal:
|
||||
|
||||
| Command | Action |
|
||||
| :------------------------ | :----------------------------------------------- |
|
||||
| `npm install` | Installs dependencies |
|
||||
| `npm run dev` | Starts local dev server at `localhost:4321` |
|
||||
| `npm run build` | Build your production site to `./dist/` |
|
||||
| `npm run preview` | Preview your build locally, before deploying |
|
||||
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
|
||||
| `npm run astro -- --help` | Get help using the Astro CLI |
|
||||
|
||||
## 👀 Want to learn more?
|
||||
|
||||
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
|
||||
```
|
||||
src/
|
||||
layouts/Layout.astro # Base HTML, SEO, fonts
|
||||
components/
|
||||
Navbar.astro # Navbar sticky con menu mobile
|
||||
Hero.astro # Hero con gradient mesh animado
|
||||
About.astro # Seccion "Que es FIT Labs"
|
||||
Capabilities.astro # 5 capacidades de IA
|
||||
Differentiator.astro # Diferenciador con valores
|
||||
Contact.astro # CTA con mailto
|
||||
Footer.astro # Footer con links
|
||||
pages/index.astro # Pagina principal
|
||||
styles/global.css # Tailwind + animaciones custom
|
||||
public/
|
||||
LogoFIT1.png # Logo FIT Labs
|
||||
favicon.svg # Favicon
|
||||
nginx/nginx.conf # Config nginx para produccion
|
||||
Dockerfile # Multi-stage build
|
||||
```
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "fitlabs-scaffold",
|
||||
"name": "fitlabs.dev",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"version": "1.0.0",
|
||||
"engines": {
|
||||
"node": ">=22.12.0"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user