Skip to content

Latest commit

 

History

History
129 lines (82 loc) · 3.74 KB

Appwrite_Account.MD

File metadata and controls

129 lines (82 loc) · 3.74 KB

Appwrite Setup

• Create an Account by signing up.


• Create a Project with the name Wellread and Select Frankfurt as the region.


• Now copy your Project ID near the Wellread and paste it in VITE_APPWRITE_PROJECT_ID of your .env file.


• Now go to the Database and create a Database blog and copy your Database ID and paste it in your VITE_APPWRITE_DATABASE_ID of your .env file.


• Now you need to create a Collection with name articles and get the Collection ID to paste it in your VITE_APPWRITE_COLLECTION_ID of your .env file.


• Go to the setting of the Collection and in the Update permission add the role to All Users and checkmark Create, Read, Update, Delete.


• Now in Collection go to the Attributes and create the following attributes and for every attribute you need to give 255 as the size.

See this for a reference.


• Next to Attributes you will find Indexes. Create an index with the following details.


• Now go to Storage and create a bucket with a name images and copy the Bucket ID to paste it in your VITE_APPWRITE_BUCKET_ID of your .env file.

• Now go to the Setting of the Bucket ID and update the permission to add a role to All Users and checkmark Create, Read, Update, and Delete.


• At last go to the Platform and add Web as the Platform. In the name give Wellread.

To know the hostname, you need to run the project locally by npm run dev. If you get an URL like http://127.0.0.1:5173/, then in this case you will put 127.0.0.1 in hostname and so on for other cases and keep on proceeding to next till you get Go to Dashboard.


Run Locally

  1. Fork this repository

    https://github.com/chirantanbanik/wellread
  2. Clone the forked repository to your system

    git clone your-forked-repository
  3. Change the directory

    cd wellread
  4. Copy the .env.example to .env

    cp .env.example .env
  5. Install packages via npm

    npm install
  6. Run the React Vite Development Server

    npm run dev