Skip to content

Commit a2151e2

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents a773f2a + 9fff94c commit a2151e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+32177
-663
lines changed

β€Ž.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ pnpm-debug.log*
1919
# macOS-specific files
2020
.DS_Store
2121
.next
22+
23+
# PyCharm-specific files
24+
.idea/

β€ŽREADME.md

Lines changed: 7 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,12 @@
11
# HackHPI Website
22

3-
## πŸš€ Project Structure
4-
5-
Inside of your Astro project, you'll see the following folders and files:
6-
7-
```
8-
/
9-
β”œβ”€β”€ public/
10-
β”‚ └── favicon.svg
11-
β”œβ”€β”€ src/
12-
β”‚ β”œβ”€β”€ components/
13-
β”‚ β”‚ └── Card.astro
14-
β”‚ β”œβ”€β”€ layouts/
15-
β”‚ β”‚ └── Layout.astro
16-
β”‚ └── pages/
17-
β”‚ └── index.astro
18-
└── package.json
19-
```
20-
21-
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
22-
23-
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
24-
25-
Any static assets, like images, can be placed in the `public/` directory.
26-
27-
## 🧞 Commands
3+
## Commands
284

295
All commands are run from the root of the project, from a terminal:
306

31-
| Command | Action |
32-
| :--------------------- | :------------------------------------------------- |
33-
| `npm install` | Installs dependencies |
34-
| `npm run dev` | Starts local dev server at `localhost:3000` |
35-
| `npm run build` | Build your production site to `./dist/` |
36-
| `npm run preview` | Preview your build locally, before deploying |
37-
| `npm run astro ...` | Run CLI commands like `astro add`, `astro preview` |
38-
| `npm run astro --help` | Get help using the Astro CLI |
7+
| Command | Action |
8+
| :--------------------- |:--------------------------------------------|
9+
| `npm install` | Installs dependencies |
10+
| `npm run dev` | Starts local dev server at `localhost:3000` |
11+
| `npm run build` | Build your production site to `./dist/` |
12+
| `npm run preview` | Check formatting |

β€Ž_old/README_astro.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# HackHPI Website
2+
3+
## πŸš€ Project Structure
4+
5+
Inside of your Astro project, you'll see the following folders and files:
6+
7+
```
8+
/
9+
β”œβ”€β”€ public/
10+
β”‚ └── favicon.svg
11+
β”œβ”€β”€ src/
12+
β”‚ β”œβ”€β”€ components/
13+
β”‚ β”‚ └── Card.astro
14+
β”‚ β”œβ”€β”€ layouts/
15+
β”‚ β”‚ └── Layout.astro
16+
β”‚ └── pages/
17+
β”‚ └── index.astro
18+
└── package.json
19+
```
20+
21+
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
22+
23+
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
24+
25+
Any static assets, like images, can be placed in the `public/` directory.
26+
27+
## 🧞 Commands
28+
29+
All commands are run from the root of the project, from a terminal:
30+
31+
| Command | Action |
32+
| :--------------------- | :------------------------------------------------- |
33+
| `npm install` | Installs dependencies |
34+
| `npm run dev` | Starts local dev server at `localhost:3000` |
35+
| `npm run build` | Build your production site to `./dist/` |
36+
| `npm run preview` | Preview your build locally, before deploying |
37+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro preview` |
38+
| `npm run astro --help` | Get help using the Astro CLI |

0 commit comments

Comments
Β (0)