https://github.com/fa-sharp/fasharp.io
My developer website
https://github.com/fa-sharp/fasharp.io
Last synced: 9 months ago
JSON representation
My developer website
- Host: GitHub
- URL: https://github.com/fa-sharp/fasharp.io
- Owner: fa-sharp
- Created: 2023-08-30T07:13:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-12T06:05:38.000Z (9 months ago)
- Last Synced: 2025-09-12T07:29:12.712Z (9 months ago)
- Language: MDX
- Homepage: https://fasharp.io
- Size: 3.59 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fasharp.io
My developer website, built with Astro.
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```
/
├── 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.
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 |
| :------------------------- | :----------------------------------------------- |
| `pnpm install` | Installs dependencies |
| `pnpm run dev` | Starts local dev server at `localhost:3000` |
| `pnpm run build` | Build your production site to `./dist/` |
| `pnpm run preview` | Preview your build locally, before deploying |
| `pnpm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `pnpm 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).