Skip to content

Commit 61ebb83

Browse files
committed
name, nojekyll
1 parent 9ec34ef commit 61ebb83

18 files changed

Lines changed: 2402 additions & 16 deletions

File tree

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/
25+
26+
.claude/
27+
.superpowers/
28+
.vscode/

.nojekyll

Whitespace-only changes.

README.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Astro Starter Kit: Minimal
2+
3+
```sh
4+
npm create astro@latest -- --template minimal
5+
```
6+
7+
<!-- ASTRO:REMOVE:START -->
8+
9+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)
10+
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal)
11+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json)
12+
13+
<!-- ASTRO:REMOVE:END -->
14+
15+
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
16+
17+
## 🚀 Project Structure
18+
19+
Inside of your Astro project, you'll see the following folders and files:
20+
21+
```text
22+
/
23+
├── public/
24+
├── src/
25+
│ └── pages/
26+
│ └── index.astro
27+
└── package.json
28+
```
29+
30+
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
31+
32+
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
33+
34+
Any static assets, like images, can be placed in the `public/` directory.
35+
36+
## 🧞 Commands
37+
38+
All commands are run from the root of the project, from a terminal:
39+
40+
| Command | Action |
41+
| :------------------------ | :----------------------------------------------- |
42+
| `npm install` | Installs dependencies |
43+
| `npm run dev` | Starts local dev server at `localhost:4321` |
44+
| `npm run build` | Build your production site to `./dist/` |
45+
| `npm run preview` | Preview your build locally, before deploying |
46+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
47+
| `npm run astro -- --help` | Get help using the Astro CLI |
48+
49+
## 👀 Want to learn more?
50+
51+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).

astro.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import { defineConfig } from 'astro/config';
22
import sitemap from '@astrojs/sitemap';
33

44
export default defineConfig({
5-
// TODO Task 13: Replace with 'https://<yourusername>.github.io'
6-
site: 'https://placeholder.github.io',
5+
site: 'https://aentum.github.io',
76
base: '/',
87
integrations: [sitemap()],
98
markdown: {

0 commit comments

Comments
 (0)