Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ace-vsit/hack-vsit5
Hack-Vsit website 2023
https://github.com/ace-vsit/hack-vsit5
astro
Last synced: 1 day ago
JSON representation
Hack-Vsit website 2023
- Host: GitHub
- URL: https://github.com/ace-vsit/hack-vsit5
- Owner: ACE-VSIT
- Created: 2023-11-14T15:15:07.000Z (almost 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-17T19:07:52.000Z (7 months ago)
- Last Synced: 2024-05-29T16:59:46.154Z (6 months ago)
- Topics: astro
- Language: Astro
- Homepage: https://hack-vsit.tech/
- Size: 29.3 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hack Vsit 5.0
ACE - The Association of Computer Enthusiasts, presents the 5th edition of HackVSIT. We at ACE believe in encouraging the growing talent and by HackVSIT we bring together, people with different outlook and solutions for already existing problems using technology and design. For 24 hours, you will work together with your teams to envision and develop the technology of tomorrow for solving the problems of today.
## π Quick start
- **Clone the repo.**
```shell
git clone
```- **Start developing.**
Navigate into your new siteβs directory and start it up.
```shell
cd hackvsit-5.0/
npm install
npm run dev
```- **Open the source code and start editing!**
Your site is now running at `http://localhost:4321`!
Open the `hackvsit-5.0` directory in your code editor of choice and edit `src/pages/index.astro`. Save your changes and the browser will update in real time!## π§ Commands
All commands are run from the root of the project, from a terminal:
| 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 |## Directory Structure
```text
βββ README.md
βββ src
βΒ Β βββ assets
βΒ Β βΒ Β βββ Ace-logo-large.svg
βΒ Β βΒ Β βββ discord.svg
βΒ Β βΒ Β βββ hackVsit.svg
βΒ Β βΒ Β βββ lines.svg
βΒ Β βΒ Β βββ navbar.svg
βΒ Β βββ components
βΒ Β βΒ Β βββ card
βΒ Β βΒ Β βΒ Β βββ Card.astro
βΒ Β βΒ Β βΒ Β βββ MembersCard.astro
βΒ Β βΒ Β βββ Faq.astro
βΒ Β βΒ Β βββ Faqs.astro
βΒ Β βΒ Β βββ graphics
βΒ Β βΒ Β βΒ Β βββ Graphics.astro
βΒ Β βΒ Β βΒ Β βββ Line.astro
βΒ Β βΒ Β βββ Hero.astro
βΒ Β βΒ Β βββ Info.astro
βΒ Β βΒ Β βββ Judge.astro
βΒ Β βΒ Β βββ Sponsors.astro
βΒ Β βΒ Β βββ Team.astro
βΒ Β βΒ Β βββ Timeline.astro
βΒ Β βΒ Β βββ ui
βΒ Β βΒ Β βββ Footer.astro
βΒ Β βΒ Β βββ Navbar.astro
βΒ Β βββ env.d.ts
βΒ Β βββ layouts
βΒ Β βΒ Β βββ Layout.astro
βΒ Β βββ pages
βΒ Β βββ 404.astro
βΒ Β βββ index.astro
|ββ public
βΒ Β βββ Ace-logo-large.svg
βΒ Β βββ add.svg
βΒ Β βββ close.svg
βΒ Β βββ cover.jpg
βΒ Β βββ cubes.svg
βΒ Β βββ cube.svg
βΒ Β βββ Devfolio.png
βΒ Β βββ discord.svg
βΒ Β βββ favicon.png
βΒ Β βββ footer-line.svg
βΒ Β βββ Hack.svg
βΒ Β βββ hackVsit.svg
βΒ Β βββ hamburgermenu.svg
βΒ Β βββ judge
βΒ Β βββ linesMobile.svg
βΒ Β βββ lines.svg
βΒ Β βββ navbar.svg
βΒ Β βββ NewLogo.svg
βΒ Β βββ socials
βΒ Β βββ sponsors
βΒ Β βββ VSIT.svg
|ββ tsconfig.json
βββ package.json
βββ pnpm-lock.yaml```