❯ 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.txt
HACKUTD24/
__root__
.github
workflows
car-hub
backend
src
config
cli
pinata
aiPrompt
test
routes
routes
pushNotification
terraform
frontend
src
lib
components
ui
hooks
test
components
embedded
src
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:
- Install the project dependencies:
Using npm 
Using pipenv 
❯ echo 'INSERT-INSTALL-COMMAND-HERE'
Using docker 
❯ docker build -t phamleduy04/hackutd24 .
Run hackutd24 using the following command:
Using npm 
Using pipenv 
❯ echo 'INSERT-RUN-COMMAND-HERE'
Using docker 
❯ docker run -it {image_name}
Run the test suite using the following command:
Using npm 
Using pipenv 
❯ echo 'INSERT-TEST-COMMAND-HERE'
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!
Contributor Graph
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.