https://github.com/ingsystemcix/portafolio
My portfolio, created in Astro, showcases my skills and projects in a sleek, modern format. Explore my work and achievements, all presented with a responsive and visually appealing design that highlights my expertise and creativity.
https://github.com/ingsystemcix/portafolio
Last synced: 10 months ago
JSON representation
My portfolio, created in Astro, showcases my skills and projects in a sleek, modern format. Explore my work and achievements, all presented with a responsive and visually appealing design that highlights my expertise and creativity.
- Host: GitHub
- URL: https://github.com/ingsystemcix/portafolio
- Owner: IngSystemCix
- Created: 2024-08-09T05:59:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-10T04:49:41.000Z (almost 2 years ago)
- Last Synced: 2025-02-24T12:45:56.445Z (over 1 year ago)
- Language: Astro
- Homepage:
- Size: 2.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Astro Starter Kit: Minimal
```sh
npm create astro@latest -- --template minimal
```
Inside of your Astro project, you'll see the following folders and files:
```text
βββ πIngSystemCix_portfolio
βββ π.astro
βββ settings.json
βββ .gitignore
βββ π.vscode
βββ extensions.json
βββ launch.json
βββ astro.config.mjs
βββ package-lock.json
βββ package.json
βββ postcss.config.js
βββ πpublic
βββ favicon.svg
βββ img
βββ README.md
βββ πsrc
βββ πcomponents
βββ Header.astro
βββ env.d.ts
βββ πlayouts
βββ Layout.astro
βββ πpages
βββ index.astro
βββ πstyles
βββ base.css
βββ tailwind.config.mjs
βββ tsconfig.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.
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).