Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Emiliaaah/appwrite-auth-demo
A Google drive clone using Appwrite for it's back-end
https://github.com/Emiliaaah/appwrite-auth-demo
appwrite appwrite-auth hacktoberfest react reactjs
Last synced: about 1 month ago
JSON representation
A Google drive clone using Appwrite for it's back-end
- Host: GitHub
- URL: https://github.com/Emiliaaah/appwrite-auth-demo
- Owner: Emiliaaah
- License: mit
- Created: 2021-09-21T12:23:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-20T17:20:28.000Z (about 3 years ago)
- Last Synced: 2024-08-02T07:24:00.737Z (4 months ago)
- Topics: appwrite, appwrite-auth, hacktoberfest, react, reactjs
- Language: JavaScript
- Homepage:
- Size: 1.08 MB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-appwrite - Source Code
README
# Appwrite + ReactJS = ❤
This example is to showcase [Appwrite's JS API](https://github.com/appwrite/sdk-for-js) with [React](https://reactjs.org/) by creating a Google drive clone using Appwrite Auth, database, Storage and realtime.
## Getting Started
To get started we will need to generate the collections. Start by making a new project in the Appwrite console. Now you will have to create an API key that the migration script is gonna use you can do this under the "API KEYS" tab on your appwrite console. Now go into the "appwrite_setup" folder in this project and copy the `.env.example` file and rename it to `.env`, then you have to fill in all the options otherwise the migration script won't run. Once you did that you will have to install the packages so the script can run:
```
yarn install
```
Now you try running the script by using the following command:
```
node migrate.js
```
This will return 2 collection ID's save these somewhere and remember which ID belongs to what collection.
Now go back to the main folder and copy the `.env.example` again, now name it `.env.local` you will again have to fill in all the options including the 2 ID's you got from running the script. Now you will again have to install all the packages using:
```
yarn install
```
Once you did that you're all good to go. Now you can start the app by running the following command:
```
yarn start
```## Screenshots
![Login](/images/login.png "Login")
![Signup](/images/signup.png "signup")
![Forgot-Password](/images/password-reset.png "Forgot-Password")
![Dashboard](/images/dashboard.png "Dashboard")
![Create-Folder](/images/create-folder.png "Create-Folder")
![Dashboard](/images/dashboard-2.png "Dashboard")