Full Stack Blog Website made with Vite+React, Appwrite, Tailwind-css, Redux-toolkit, React-hook-form, React-router, Tinymce-react, Html-react-parser, .
- Blog Application
This project is a CRUD (Create, Read, Update, Delete) blog website developed using React.js, Redux-Toolkit, TailwindCSS, react-hook-form, and Appwrite. It provides users with the ability to create, read, update, and delete blogs, along with advanced features such as user authentication, rich multimedia content support, and blog privacy settings.
- Login and Sign-up function
- Can create new posts
- Can update your posts
- Can delete your posts
- Can made active or inactive your post
- Can see all active post of any writer
- Can see your posts
Backend Server
- Install Node JS in your computer HERE
- Sign up for a Appwrite account HERE
- Sign up for a Tiny-mce account HERE
To run this project, you will need to add the following environment variables to your .env file
VITE_APPWRITE_URL
VITE_APPWRITE_PROJECT_ID
VITE_APPWRITE_DATABASE_ID
VITE_APPWRITE_COLLECTION_ID
VITE_APPWRITE_BUCKET_ID
VITE_RTE_API_KEY
Install my-project with npm
npm create vite@latest my-project -- --template react
cd my-project
Install dependencies
Install tailwindcss and its peer dependencies via npm, and then run the init command to generate both tailwind.config.js
and postcss.config.js
.
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
Add the paths to all of your template files in your tailwind.config.js
file.
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
Add the @tailwind
directives for each of Tailwind’s layers to your ./src/index.css
file.
@tailwind base;
@tailwind components;
@tailwind utilities;
Install dependencies
Clone the project
git clone https://github.com/2003tanmay/appwriteblog.git
change directory
cd appwriteblog
Install dependencies
npm install
Start the server
npm run dev
This is a Vite+React project
Open http://localhost:5173 with your browser to see the result.
You can start editing the page by modifying src/main.jsx
. The page auto-updates as you edit the file.
To deploy this project run
The easiest way to deploy your React.js app is to use the Vercel Platform from the creators of React.js.
Tanmay Pal - LinkedIn - tanmayspal2003@gmail.com
Project Link: github