
Application to register your pet's medical records, allowing you to present everything in one place to your veterinarian, including your pet's location.
Link to the project running on the WEB
I had a black kitten named NEGO, and he inspired me along with the challenges of keeping pet's medical records. With this in mind, I created this platform with various features to better address pet's health needs.
This project was developed with the following main technologies:
and more...
The project runs on Node.js v20+.
Instructions to install dependencies and start the project.
cd ./cadastrapet_oficial
npm i
npx run dev
It's possible that the website is down or experiencing some issues, so it will be necessary to configure Firebase to run the application.
Remember to create an instance in Firebase and complete the Firebase configurations in the firebase-config.ts
files in both applications located at src/services/firebase-config.ts
import { initializeApp } from "firebase/app";
import { getAuth } from "firebase/auth";
import { getFirestore } from "firebase/firestore";
import { getStorage } from "firebase/storage";
const firebaseConfig = {
apiKey: "<YOUR KEY HERE>",
authDomain: "<YOUR KEY HERE>",
projectId: "<YOUR KEY HERE>",
storageBucket: "<YOUR KEY HERE>",
messagingSenderId: "<YOUR KEY HERE>",
appId: "<YOUR KEY HERE>",
measurementId: "<YOUR KEY HERE>",
};
const app = initializeApp(firebaseConfig);
export const authentication = getAuth(app);
export const db = getFirestore(app);
export const storage = getStorage(app);
Developed 💜 by Filipe Batista