ATAhsan Tahirinahsanjs.hashnode.dev·Jan 20, 2024 · 2 min readCopy entire Mongodb Database running inside Docker Container in a Remote machine to your Local machineLets start by breaking into the remote machine ssh [username]@[IP Address] Once you are in the remote machine you need to get inside the docker container that is running your mongodb database: docker exec -it [your conatiner id] bash Now we are goi...00
ATAhsan Tahirinahsanjs.hashnode.dev·Dec 21, 2023 · 2 min readUpload Files to Supabase using React, Antd and TypescriptLets start by creating a new react app: yarn create vite supabase-file-upload --template react-ts Now install antd and supabase client library: yarn add @supabase/supabase-js antd Create a new supabase project by visiting supabase.com Now go to you...00