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.
-
Clone the repo.
git clone
-
Start developing.
Navigate into your new site’s directory and start it up.
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 thehackvsit-5.0
directory in your code editor of choice and editsrc/pages/index.astro
. Save your changes and the browser will update in real time!
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 |
├── 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