fendThorne
fendThorne is a decentralised cloud storage system built for army personnel to securely upload, download and share files.
It uses Arcana SDK and Google OAuth under the hood for storage of files and authentication of users respectively.
Hackathon Submission for Makeathon 4.0
Environment Variables
To run this project, rename the .env.example file to .env
-
Create an application from the Arcana Dashboard and copy the APP ID provided there.
-
Create an application for the OAuth flow from Google Developer Console and obtain the Client ID after configuring the consent screen.
Populate theVITE_ARCANA_APP_ID
andVITE_GOOGLE_CLIENT_ID
with the respective IDs.
Note: Remember to set the origin to http://localhost:3000 and the redirect url to http://localhost:3000/auth/redirect when configuring the OAuth Client ID.
Local Development
Clone this repository.
git clone https://github.com/shouryade/fendThorne.git
Install the required packages for the project.
cd fendThorne
npm install
Run the project using npm run dev
.
Navigate to http://localhost:3000.
Since Vite supports Hot Module Reloading, you can make changes on-the-go with the localhost server up and running.
Run using Docker
The following command would create and start the container from the image created.
docker run -it -p 3000:3000 -d --name fendThorne shouryade/fendThorne