DEV Community

Cover image for Import Csv to Appwrite Database
Rohit Patil
Rohit Patil

Posted on

Import Csv to Appwrite Database

Overview of My Submission

Import Csv is a web application where the user can import there csv data into the appwrite database.It helps to solve the problem of manually inserting the data into database by simply uploading the csv file and user can see the data get's stored into the appwrite database.

The user must need to signup first to avail the service.
For that I have made use of appwrite sdk for login,signup and creating session of the user.

Submission Category:

Web2 Wizards

Link to Code

https://github.com/rohit-raje-786/Import-CSV

Additional Resources / Info

Demo Video

https://www.loom.com/share/bf849c47fc0a41f999ea7e673d2e0d58

Screenshot

Image description

Thankyou Appwrite๐Ÿš€

It is my first time using appwrite,it is so easy to understand and implement.Looking forward to make some more cool projects using appwrite.

Top comments (2)

Collapse
 
seek4samurai profile image
Gourav Singh Rawat

Forgot password would provoke a network error. AppwriteException: Network request failed. Maybe because

    try {
      await account.createRecovery(
        data.get("email"),
        "http://localhost:3000/passwordrecovery"
      );
      console.log("Email Send Succesfully");
    } catch (e) {
      console.log(e);
    }
Enter fullscreen mode Exit fullscreen mode

Your api call is to wrong point. It should not be localhost.

Collapse
 
rohitraje786 profile image
Rohit Patil

I haven't hosted the appwrite backend,I am running it using docker and it's working fine on my local machine.
Here's the demo:
loom.com/share/3c10dbfa1e1b47f49d9...