❯ REPLACE-ME
Built with the tools and technologies:
Table of Contents
❯ REPLACE-ME
❯ REPLACE-ME
└── hackutd24/
├── .github
│ └── workflows
├── 3D_MODEL.md
├── backend
│ ├── .dockerignore
│ ├── .env.example
│ ├── .gitignore
│ ├── Dockerfile
│ ├── baseline.jpg
│ ├── docker-compose.yml
│ ├── eslint.config.mjs
│ ├── jest.config.js
│ ├── package.json
│ ├── pnpm-lock.yaml
│ ├── src
│ └── tsconfig.json
├── car-hub
│ ├── .gitignore
│ ├── Pipfile
│ ├── Pipfile.lock
│ ├── README.md
│ └── main.py
├── embedded
│ ├── .gitignore
│ ├── .vscode
│ ├── platformio.ini
│ └── src
├── frontend
│ ├── .gitignore
│ ├── README.md
│ ├── components.json
│ ├── eslint.config.js
│ ├── index.html
│ ├── package.json
│ ├── pnpm-lock.yaml
│ ├── postcss.config.js
│ ├── public
│ ├── src
│ ├── tailwind.config.js
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── package.json
├── pnpm-lock.yaml
├── sonar-project.properties
├── terraform
│ ├── .gitignore
│ ├── README.md
│ └── main.tf
└── test.txtHACKUTD24/
__root__
pnpm-lock.yaml ❯ REPLACE-MEtest.txt ❯ REPLACE-MEpackage.json ❯ REPLACE-ME
.github
workflows
deploy.yml ❯ REPLACE-MEpr-review.yml ❯ REPLACE-MEeslint.yml ❯ REPLACE-MEdocker-build.yml ❯ REPLACE-ME
backend
pnpm-lock.yaml ❯ REPLACE-MEtsconfig.json ❯ REPLACE-MEeslint.config.mjs ❯ REPLACE-MEpackage.json ❯ REPLACE-ME.env.example ❯ REPLACE-MEdocker-compose.yml ❯ REPLACE-MEjest.config.js ❯ REPLACE-MEDockerfile ❯ REPLACE-MEsrc
server.ts ❯ REPLACE-MEapp.ts ❯ REPLACE-MEconfig
index.ts ❯ REPLACE-MEcli
createPublicGroup.ts ❯ REPLACE-MEpinata
index.ts ❯ REPLACE-MEaiPrompt
index.ts ❯ REPLACE-MEtest
error.spec.ts ❯ REPLACE-MEroutes
index.spec.ts ❯ REPLACE-MEpushNotification
index.ts ❯ REPLACE-ME
terraform
main.tf ❯ REPLACE-ME
frontend
postcss.config.js ❯ REPLACE-MEtsconfig.node.json ❯ REPLACE-MEpnpm-lock.yaml ❯ REPLACE-MEtsconfig.json ❯ REPLACE-MEtailwind.config.js ❯ REPLACE-MEtsconfig.app.json ❯ REPLACE-MEpackage.json ❯ REPLACE-MEvite.config.ts ❯ REPLACE-MEindex.html ❯ REPLACE-MEcomponents.json ❯ REPLACE-MEeslint.config.js ❯ REPLACE-MEsrc
main.tsx ❯ REPLACE-MEindex.css ❯ REPLACE-MEApp.css ❯ REPLACE-MEvitest.setup.ts ❯ REPLACE-MEApp.tsx ❯ REPLACE-MEvite-env.d.ts ❯ REPLACE-MElib
utils.ts ❯ REPLACE-MErequests.ts ❯ REPLACE-MEcomponents
AppLayout.tsx ❯ REPLACE-MEAppSidebar.tsx ❯ REPLACE-MEHome.tsx ❯ REPLACE-MEui
sheet.tsx ❯ REPLACE-MEbadge.tsx ❯ REPLACE-MEsidebar.tsx ❯ REPLACE-MEscroll-area.tsx ❯ REPLACE-MEinput.tsx ❯ REPLACE-MEseparator.tsx ❯ REPLACE-MEbutton.tsx ❯ REPLACE-MEskeleton.tsx ❯ REPLACE-MEtooltip.tsx ❯ REPLACE-MEcard.tsx ❯ REPLACE-MEhooks
use-mobile.tsx ❯ REPLACE-MEtest
App.test.tsx ❯ REPLACE-MEcomponents
Home.test.tsx ❯ REPLACE-ME
embedded
platformio.ini ❯ REPLACE-MEsrc
main.cpp ❯ REPLACE-ME
Before getting started with hackutd24, ensure your runtime environment meets the following requirements:
- Programming Language: TypeScript
- Package Manager: Npm, Pipenv
- Container Runtime: Docker
Install hackutd24 using one of the following methods:
Build from source:
- Clone the hackutd24 repository:
❯ git clone https://github.com/phamleduy04/hackutd24- Navigate to the project directory:
❯ cd hackutd24- Install the project dependencies:
❯ npm install❯ echo 'INSERT-INSTALL-COMMAND-HERE'❯ docker build -t phamleduy04/hackutd24 .Run hackutd24 using the following command:
Using npm
❯ npm start❯ echo 'INSERT-RUN-COMMAND-HERE'❯ docker run -it {image_name}Run the test suite using the following command:
Using npm
❯ npm test❯ echo 'INSERT-TEST-COMMAND-HERE'-
Task 1:Implement feature one. -
Task 2: Implement feature two. -
Task 3: Implement feature three.
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
hackutd24project. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/phamleduy04/hackutd24
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the SELECT-A-LICENSE License. For more details, refer to the LICENSE file.
- List any resources, contributors, inspiration, etc. here.