This project was created exclusively for the KickStart selection process. It demonstrates the use of Vue 3, TypeScript, Vite, and TailwindCSS.
- Vue 3: A progressive JavaScript framework for building user interfaces.
- TypeScript: A typed superset of JavaScript that compiles to plain JavaScript.
- Vite: A next-generation frontend tooling that focuses on speed and performance.
- TailwindCSS: A utility-first CSS framework for rapidly building custom user interfaces.
Follow these instructions to set up and run the project on your local machine.
Make sure you have the following installed:
-
Clone the repository:
git clone https://github.com/yourusername/kickstart-selection-project.git cd kickstart-selection-project
-
Install dependencies:
npm install # or yarn install
To build and start the project, use the following commands:
-
Development Server:
npm run dev # or yarn dev
This will start the development server and you can view the project at
http://localhost:3000
. -
Build for Production:
npm run build # or yarn build
This will build the project for production in the
dist
directory. -
Preview the Production Build:
npm run serve # or yarn serve
This will serve the production build locally to verify everything is working correctly.
The project structure is organized as follows:
- public/: Contains static assets that are served directly.
- src/: Contains the main source code for the application.
- assets/: Contains static assets like images and fonts.
- components/: Contains Vue components.
- composables/: Contains reusable composition functions.
- layouts/: Contains layout components that wrap around pages.
- pages/: Contains the page components.
- router/: Contains the Vue Router configuration.
- store/: Contains the Vuex store configuration.
- styles/: Contains global styles and TailwindCSS configurations.
- utils/: Contains utility functions and helpers.
- App.vue: The root component.
- main.ts: The entry point of the application.
- env.d.ts: TypeScript environment configuration.
This project was set up to evaluate the frontend development skills of candidates for the KickStart selection process. Candidates are expected to implement specific features and enhancements on top of this project to demonstrate their proficiency in Vue 3, TypeScript, Vite, and TailwindCSS.
Please refer to the project documentation and instructions provided during the selection process for more details.