From 6c15c6ac7b53ad7d34f6c8857f5091af43996307 Mon Sep 17 00:00:00 2001 From: Antonio De Lucreziis Date: Thu, 29 Feb 2024 13:01:49 +0100 Subject: [PATCH] chore: updated readme --- README.md | 55 ++++++++++++++++++++----------------------------------- 1 file changed, 20 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index e34a99b..425aa0a 100644 --- a/README.md +++ b/README.md @@ -1,47 +1,32 @@ -# Astro Starter Kit: Minimal +# PHC Website -```sh -npm create astro@latest -- --template minimal -``` - -[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal) -[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal) -[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json) - -> ๐Ÿง‘โ€๐Ÿš€ **Seasoned astronaut?** Delete this file. Have fun! - -## ๐Ÿš€ Project Structure +Questo รจ il repository del sito web del PHC. Il sito รจ costruito utilizzando Astro, un framework statico per la generazione di siti web. -Inside of your Astro project, you'll see the following folders and files: +## Installazione -```text -/ -โ”œโ”€โ”€ public/ -โ”œโ”€โ”€ src/ -โ”‚ โ””โ”€โ”€ pages/ -โ”‚ โ””โ”€โ”€ index.astro -โ””โ”€โ”€ package.json +```bash +pnpm install ``` -Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. +## Sviluppo -There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. +```bash +pnpm dev +``` -Any static assets, like images, can be placed in the `public/` directory. +## Build -## ๐Ÿงž Commands +```bash +pnpm build +``` -All commands are run from the root of the project, from a terminal: +## Deploy [TODO] -| 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 | +Il progetto contiene un `Dockerfile` che viene usato per il deploy (del server prodotto da Astro). -## ๐Ÿ‘€ Want to learn more? +```bash +docker build -t phc-website . +docker run -p 3000:3000 phc-website +``` -Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). +C'รจ anche un `.drone.yml` che viene usato per il deploy su un server remoto utilizzando Drone per il CD. \ No newline at end of file