Skip to content

Latest commit

 

History

History
100 lines (73 loc) · 3.07 KB

README_EN.md

File metadata and controls

100 lines (73 loc) · 3.07 KB
Version in Brasilian Portuguese

Index

🔖  About

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

Objective

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.


Technologies

This project was developed with the following main technologies:

and more...


Installation

The project runs on Node.js v20+.

Instructions to install dependencies and start the project.

Web

cd ./cadastrapet_oficial
npm i
npx run dev

Firebase Database

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);

Let's connect 😉

LinkedIn Email Instagram


Developed 💜 by Filipe Batista