{"id":28146432,"url":"https://github.com/shanksxz/writeup","last_synced_at":"2026-04-12T10:41:37.856Z","repository":{"id":262464378,"uuid":"880333973","full_name":"shanksxz/writeup","owner":"shanksxz","description":"A full-stack blogging application built with the MERN stack. This project allows users to create, read, update, and delete blog posts with image uploads supported by Cloudinary","archived":false,"fork":false,"pushed_at":"2024-12-09T06:04:34.000Z","size":535,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-09T07:19:13.311Z","etag":null,"topics":["college-project","express","mern-stack","mongodb","mongoose","react","shadcn-ui","tanstack-query","testing","typescript","under-development"],"latest_commit_sha":null,"homepage":"https://writeup.somyabhatt.tech","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shanksxz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-29T14:38:29.000Z","updated_at":"2024-12-08T15:08:54.000Z","dependencies_parsed_at":"2024-12-09T07:18:55.417Z","dependency_job_id":"097b6e61-bac1-4ac5-830a-fdd9997a6330","html_url":"https://github.com/shanksxz/writeup","commit_stats":null,"previous_names":["shanksxz/writeup"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fwriteup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fwriteup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fwriteup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanksxz%2Fwriteup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shanksxz","download_url":"https://codeload.github.com/shanksxz/writeup/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254243322,"owners_count":22038046,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["college-project","express","mern-stack","mongodb","mongoose","react","shadcn-ui","tanstack-query","testing","typescript","under-development"],"created_at":"2025-05-14T23:12:34.697Z","updated_at":"2025-12-30T22:48:01.094Z","avatar_url":"https://github.com/shanksxz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Writeup\n\n## Table of Contents\n- [Introduction](#introduction)\n- [Features](#features)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Technologies Used](#technologies-used)\n- [Folder Structure](#folder-structure)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Introduction\nThis is a MERN stack application developed as a college project. The app allows users to create, read, update, and delete blog posts. It also supports image uploads using Cloudinary.\n\n## Features\n- User authentication and authorization\n- Create, read, update, and delete blog posts\n- Image uploads using Cloudinary\n- Responsive design\n- Rich text editor for blog content\n\n## Installation\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/shanksxz/writeup\n    ```\n2. Navigate to the project directory:\n    ```bash\n    cd writeup\n    ```\n3. Install server dependencies:\n    ```bash\n    cd server\n    npm install\n    ```\n4. Install client dependencies:\n    ```bash\n    cd ../client\n    npm install\n    ```\n5. Create a `.env` file in the `server` directory and add your environment variables:\n    ```env\n    DATABASE_URL=\u003cyour-mongodb-uri\u003e\n    PORT=\u003cyour-port\u003e\n    CLOUDINARY_CLOUD_NAME=\u003cyour-cloudinary-cloud-name\u003e\n    CLOUDINARY_API_KEY=\u003cyour-cloudinary-api-key\u003e\n    CLOUDINARY_API_SECRET=\u003cyour-cloudinary-api-secret\u003e\n    JWT_SECRET=\u003cyour-jwt-secret\u003e\n    ```\n6. Create a `.env` file in the `client` directory and add your environment variables:\n    ```env\n    VITE_API_URL=http://localhost:\u003cyour-port\u003e/api\n    ```\n\n## Usage\n1. Start the server:\n    ```bash\n    cd server\n    npm run dev\n    ```\n2. Start the client:\n    ```bash\n    cd ../client\n    npm run dev\n    ```\n3. Open your browser and navigate to `http://localhost:5173`.\n\n## Technologies Used\n- MongoDB\n- Express.js\n- React.js\n- Node.js\n- Cloudinary\n- Shadcn UI\n- TipTap (Rich text editor)\n\n## Folder Structure\n```\nwriteup\n├── client\n│   ├── src\n│   │   ├── assets\n│   │   ├── components\n│   │   ├── context\n│   │   ├── lib\n│   │   ├── pages\n│   │   ├── App.jsx\n│   │   └── main.jsx\n│   ├── .env\n│   ├── .gitignore\n│   ├── index.html\n│   └── package.json\n└── server\n    ├── src\n    │   ├── config\n    │   ├── controllers\n    │   ├── middlewares\n    │   ├── models\n    │   ├── routes\n    │   ├── utils\n    │   └── validators\n    ├── index.js\n    ├── .env\n    └── package.json\n```\n\n\n## Contributing\nContributions are welcome! Please open an issue or submit a pull request.\n\n## License\nThis project is licensed under the MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshanksxz%2Fwriteup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshanksxz%2Fwriteup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshanksxz%2Fwriteup/lists"}