···10101111## Conference Profile
1212For starters, we're going to have a custom conference profile. Attendees and speakers (and anyone else!) can login and create an extended profile. Inspired by [Discover Toronto](https://discover.toronto.inc/), we had an [initial discussion in the forum](https://discourse.atprotocol.community/t/conference-profiles/186) and are going to work on fleshing this out here with detailed issues.
1313+1414+# Astro Starter Kit: Minimal
1515+1616+```sh
1717+npm create astro@latest -- --template minimal
1818+```
1919+2020+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
2121+2222+## 🚀 Project Structure
2323+2424+Inside of your Astro project, you'll see the following folders and files:
2525+2626+```text
2727+/
2828+├── public/
2929+├── src/
3030+│ └── pages/
3131+│ └── index.astro
3232+└── package.json
3333+```
3434+3535+Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
3636+3737+There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
3838+3939+Any static assets, like images, can be placed in the `public/` directory.
4040+4141+## 🧞 Commands
4242+4343+All commands are run from the root of the project, from a terminal:
4444+4545+| Command | Action |
4646+| :------------------------ | :----------------------------------------------- |
4747+| `npm install` | Installs dependencies |
4848+| `npm run dev` | Starts local dev server at `localhost:4321` |
4949+| `npm run build` | Build your production site to `./dist/` |
5050+| `npm run preview` | Preview your build locally, before deploying |
5151+| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
5252+| `npm run astro -- --help` | Get help using the Astro CLI |
5353+5454+## 👀 Want to learn more?
5555+5656+Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).