├── .gitignore ├── LICENSE ├── README.md ├── cards ├── 01.simple_version │ └── RentalCars │ │ ├── .gitignore │ │ ├── hsproject.json │ │ └── src │ │ └── app │ │ ├── app.functions │ │ ├── README.md │ │ ├── getLocations.js │ │ ├── getVehicles.js │ │ ├── package.json │ │ └── serverless.json │ │ ├── app.json │ │ └── extensions │ │ ├── CreateRental.jsx │ │ ├── package.json │ │ └── simplecreaterental.json ├── 02.advanced_version │ └── RentalCars │ │ ├── .gitignore │ │ ├── hsproject.json │ │ └── src │ │ └── app │ │ ├── app.functions │ │ ├── README.md │ │ ├── bun.lockb │ │ ├── geoCode.js │ │ ├── getLocations.js │ │ ├── getVehicles.js │ │ ├── package.json │ │ └── serverless.json │ │ ├── app.json │ │ └── extensions │ │ ├── CarsOnLocation.jsx │ │ ├── CreateRental.jsx │ │ ├── bun.lockb │ │ ├── crm-cards-1.json │ │ ├── crm-cards.json │ │ └── package.json └── README.md └── data ├── 1.custom-object-locations.json ├── 1.custom-object-rental-agreement.json ├── 1.custom-object-vehicles.json ├── 2.properties-locations.json ├── 2.properties-rental-agreement.json ├── 2.properties-vehicles.json ├── 3.crm-bootcamp-locations.csv ├── 3.crm-bootcamp-vehicles.csv ├── README.md └── number_of_available_vehicles.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | .zed 4 | hubspot.config.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/README.md -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/.gitignore -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/hsproject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/hsproject.json -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/app.functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/app.functions/README.md -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/app.functions/getLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/app.functions/getLocations.js -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/app.functions/getVehicles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/app.functions/getVehicles.js -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/app.functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/app.functions/package.json -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/app.functions/serverless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/app.functions/serverless.json -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/app.json -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/extensions/CreateRental.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/extensions/CreateRental.jsx -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/extensions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/extensions/package.json -------------------------------------------------------------------------------- /cards/01.simple_version/RentalCars/src/app/extensions/simplecreaterental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/01.simple_version/RentalCars/src/app/extensions/simplecreaterental.json -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/.gitignore -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/hsproject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/hsproject.json -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.functions/README.md -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.functions/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.functions/bun.lockb -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.functions/geoCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.functions/geoCode.js -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.functions/getLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.functions/getLocations.js -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.functions/getVehicles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.functions/getVehicles.js -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.functions/package.json -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.functions/serverless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.functions/serverless.json -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/app.json -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/extensions/CarsOnLocation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/extensions/CarsOnLocation.jsx -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/extensions/CreateRental.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/extensions/CreateRental.jsx -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/extensions/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/extensions/bun.lockb -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/extensions/crm-cards-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/extensions/crm-cards-1.json -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/extensions/crm-cards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/extensions/crm-cards.json -------------------------------------------------------------------------------- /cards/02.advanced_version/RentalCars/src/app/extensions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/02.advanced_version/RentalCars/src/app/extensions/package.json -------------------------------------------------------------------------------- /cards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/cards/README.md -------------------------------------------------------------------------------- /data/1.custom-object-locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/1.custom-object-locations.json -------------------------------------------------------------------------------- /data/1.custom-object-rental-agreement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/1.custom-object-rental-agreement.json -------------------------------------------------------------------------------- /data/1.custom-object-vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/1.custom-object-vehicles.json -------------------------------------------------------------------------------- /data/2.properties-locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/2.properties-locations.json -------------------------------------------------------------------------------- /data/2.properties-rental-agreement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/2.properties-rental-agreement.json -------------------------------------------------------------------------------- /data/2.properties-vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/2.properties-vehicles.json -------------------------------------------------------------------------------- /data/3.crm-bootcamp-locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/3.crm-bootcamp-locations.csv -------------------------------------------------------------------------------- /data/3.crm-bootcamp-vehicles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/3.crm-bootcamp-vehicles.csv -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/README.md -------------------------------------------------------------------------------- /data/number_of_available_vehicles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubspotdev/crm-customization-dev-bootcamp/HEAD/data/number_of_available_vehicles.png --------------------------------------------------------------------------------