Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sabrydawood/sigar-client
Sigar is a Social media
https://github.com/sabrydawood/sigar-client
Last synced: about 1 month ago
JSON representation
Sigar is a Social media
- Host: GitHub
- URL: https://github.com/sabrydawood/sigar-client
- Owner: sabrydawood
- Created: 2023-03-07T09:27:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-11T21:04:37.000Z (almost 2 years ago)
- Last Synced: 2024-04-13T08:36:10.461Z (9 months ago)
- Language: JavaScript
- Homepage: https://sigar.vercel.app
- Size: 4.45 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sigar
Sigar is a fully-featured social media web application, built with the MERN stack.
## Features
- Create, read, update and delete posts
- Like and unlike posts
- Create, reply to, read, update and delete nested comments
- Markdown for posts and comments
- Sign up and login using JWT for authentication
- Private message users in real-time using socket.io
- View profiles of users and browse through their posts, liked posts and comments
- Infinite scrolling
- Sort posts by attributes such as like count, comment count and date created
- Profanity filtering and posting/commenting cooldowns
- Update bio which can be viewed by other users
- Search for posts by their title
- Fully responsive layout## Installation and usage
1. Clone this repository
```
git clone https://github.com/virgel1995/sigar-client.git
```2. Install dependencies
```
npm install
cd client
npm install
```3. Create .env in root directory
```
cd ..
touch .env
```4. Configure environment variables in your new .env file. To acquire your MONGO_URI, create a cluster for free over at https://www.mongodb.com/. The TOKEN_KEY is a secret key of your choosing, you can generate one at this site: https://randomkeygen.com/.
```
MONGO_URI=
TOKEN_KEY=
PORT=4000
```