https://github.com/iam-abin/blogster
A dynamic blogging platform ✍️📚 where users can write, share, and discover diverse blogs.
https://github.com/iam-abin/blogster
aws-s3 expressjs mongodb mongoose nodejs passportjs redis
Last synced: 4 months ago
JSON representation
A dynamic blogging platform ✍️📚 where users can write, share, and discover diverse blogs.
- Host: GitHub
- URL: https://github.com/iam-abin/blogster
- Owner: iam-abin
- Created: 2024-04-23T22:20:33.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-07T11:01:05.000Z (9 months ago)
- Last Synced: 2025-01-17T17:14:41.305Z (6 months ago)
- Topics: aws-s3, expressjs, mongodb, mongoose, nodejs, passportjs, redis
- Language: JavaScript
- Homepage:
- Size: 860 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Blogster
It is a blog application build focused on the redis caching mechanism.
### prerequsties
- Nodejs
- Mongodb
- Redis (Installation step on bottom area)## Installation
1. Clone the repository:
```
git clone https://github.com/iam-abin/Blogster.git
```2. Navigate to the project directory:
```
cd Blogster
```3. Install the dependencies:
```
cd backend
```
```
npm install
```
- open another tab in vscode terminal and run
```
cd frontend
```
```
npm install
```4. Set up the required environment variables. Rename the `.env.example` file to `.env` and provide the necessary values for your environment.
5. Start server (Running the app):
- In both frontend and backend terminal tabs, run
```
npm run dev
```5. Access the application from browser using:
```
http://localhost:4000
```# Images




## redis
### Installation
- first install brew package manager if not installed
(visit the official site of brew to install based on the os)- To install redis in our local machine,
```
brew install redis
```- To start redis using brew,
```
brew services start redis
```- To Check redis server is running,
```
redis-cli ping
```- To stop redis server
```
brew services stop redis
```- To restart redis
```
brew services restart redis
```