Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bethropolis/suplike-social-website
a full self-hosted social network, easy to setup, backend API, Moderation, Admin dashboard, Developer console, bots, plugins and more.
https://github.com/bethropolis/suplike-social-website
bootstrap4 php pwa self-hosted social social-media social-network social-network-api social-website suplike web-application xampp
Last synced: about 2 months ago
JSON representation
a full self-hosted social network, easy to setup, backend API, Moderation, Admin dashboard, Developer console, bots, plugins and more.
- Host: GitHub
- URL: https://github.com/bethropolis/suplike-social-website
- Owner: bethropolis
- License: mit
- Created: 2020-11-24T06:46:39.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-16T06:26:55.000Z (8 months ago)
- Last Synced: 2024-04-16T08:34:39.789Z (8 months ago)
- Topics: bootstrap4, php, pwa, self-hosted, social, social-media, social-network, social-network-api, social-website, suplike, web-application, xampp
- Language: PHP
- Homepage: https://bethro.alwaysdata.net
- Size: 21.1 MB
- Stars: 17
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![logo](img/suplike.png)
# hello welcome to suplike
![suplike](https://img.shields.io/badge/project-suplike%20%F0%9F%92%9C-%236c5ce7)
[![github](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/bethropolis/suplike-social-website)
![watch](https://img.shields.io/github/stars/bethropolis/suplike-social-website.svg)
[![CodeFactor](https://www.codefactor.io/repository/github/bethropolis/suplike-social-website/badge)](https://www.codefactor.io/repository/github/bethropolis/suplike-social-website)
![code](https://badgen.net/github/license/micromatch/micromatch)
suplike social is a feature rich fully open source social network.it's made using PHP/HTML/JS/CSS
it's easy to install and [setup](#installation);
check out [demo](https://bethro.alwaysdata.net)
# Table of Contents
- [hello welcome to suplike](#hello-welcome-to-suplike)
- [Table of Contents](#table-of-contents)
- [getting started](#getting-started)
- [Installation](#installation)
- [Requirements](#requirements)
- [Installation Steps](#installation-steps)
- [setup and configure database](#setup-and-configure-database)
- [using the GUI](#using-the-gui)
- [incase GUI doesn't work](#incase-gui-doesnt-work)
- [Components](#components)
- [Languages](#languages)
- [Development Environment](#development-environment)
- [DBMS (optional)](#dbms-optional)
- [versions](#versions)
- [features](#features)
- [Mobile UI](#mobile-ui)
- [live messaging/chat system (whole new look)](#live-messagingchat-system-whole-new-look)
- [home page](#home-page)
- [profile page](#profile-page)
- [login/signup system](#loginsignup-system)
- [search page](#search-page)
- [following page](#following-page)
- [image and text post](#image-and-text-post)
- [like \& follow system](#like--follow-system)
- [Developer Page](#developer-page)
- [other user pages](#other-user-pages)
- [Admin dashboard](#admin-dashboard)
- [you can do the following on the dashboard](#you-can-do-the-following-on-the-dashboard)
- [inspiration](#inspiration)
- [behind it all](#behind-it-all)
- [License](#license)# getting started
## Installation
#### Requirements
- PHP
- Apache server
- MySQL Database
- phpMyAdmin (optional)> All of these requirements can be completed at once by simply installing a server stack like `Wamp` or `Xampp` etc.
### Installation Steps
1. Download the latest release file.
| File | Description | Size |
| ----------------------------------------------------------------------------------------------------------------------------- | -------------------------- | ------ |
| [v1.5.1 zip file](https://github.com/bethropolis/suplike-social-website/releases/download/1.5.1/compressed-suplike-v1.5.1.zip)| Latest release zip file | 1.4 MB |
| [v1.5.1 tar file](https://github.com/bethropolis/suplike-social-website/releases/download/1.5.1/compressed-suplike-v1.5.1.tar)| Latest release tar.gz file | 3.0 MB |
| [v1.5.1 installer-script.php](https://github.com/bethropolis/suplike-social-website/releases/download/1.5.1/installer-script.php)| installer script | 2 kB |unzip the file and extract all the files into your `htdocs` or `www` directory depending on what you are using. (installer script does this automatically)
> I recommend renaming the extracted folder to `suplike` (the url will be shorter).2. if you choose to use the installer script then first you need to download the script into your server folder then run the following command.
```bash
php installer-script.php
```
3. you can clone the repository to your `htdocs` or `www` folder.
```bash
git clone https://github.com/bethropolis/suplike-social-website.git suplike
```> now you are ready to setup.
## setup and configure database
### using the GUI
the GUI is a nicer interface which will automatically setup the database and create admin account for you easily.
![GUI](_githubasserts/gui.png)
The GUI should open by default on the first time you run the app. If it doesn't then on the browser navigate to `{HOST_URL}/suplike/inc/setup/`.on the GUI you insert the credentials to your database and admin account after which you will automatically be logged in as admin.
> please note in the url, replace `suplike` with what you named the folder or the folders name (also remove if the app is on the root directory).
>### incase GUI doesn't work
1. Edit the `inc/setup/setup.suplike.json` and `inc/setup/env.php` file and set the value of `"setup"` to `false` then reopen the GUI in your browser again.
2. Do it Manually, create a database `suplike` and Import the `suplike.sql` file in the `sql` folder into phpMyAdmin. There is no need for any change in the .sql file. Next, change the following part of code below in the `inc/setup/env.php` to the respective database credentials.
```php
if (!defined('DB_DATABASE')) define('DB_DATABASE', 'suplike');
if (!defined('DB_HOST')) define('DB_HOST','localhost');
if (!defined('DB_USERNAME')) define('DB_USERNAME', 'root');
if (!defined('DB_PASSWORD')) define('DB_PASSWORD', '');
if (!defined('DB_PORT')) define('DB_PORT',3306);
```> you'll also manually have to change you account to admin account in the database.
## Components
#### Languages
```
PHP 8.0+
SQL 14.0+
JavaScript ES 6
HTML5
CSS3
```#### Development Environment
```
apache 2.4+
MYSQL 9.0+
```#### DBMS (optional)
```
phpMyAdmin 5.0+
```# versions
check `HISTORY.md` or [releases](https://github.com/bethropolis/suplike-social-website/releases)
more improvements will continue to be done to this project please stay and watch 👀.# features
## Mobile UI
![Alt text](_githubasserts/mobile.png)
The app is mobile friendly and responsive.
the app's themes can easily be changed## live messaging/chat system (whole new look)
read more
![Alt text](_githubasserts/messages.png)
in previous version, one of the issues was that the messaging page was just
a page. Live messaging was not well supported and you could not choose who to chat with until
you clicked message on their profile page. But in the new version, the entire code was re writen and the
whole of that is gone, you can chat with the people you follow
and it is more mobile responsive than previous and the only client page that uses Vuejs.## home page
read more
![Alt text](_githubasserts/10.png)
the home page is the main page where you can see post from some of the people you follow
and the first page you will land on after authentication.## profile page
read more
![Alt text](_githubasserts/3.png)
access to your profile page and other users profile page.## login/signup system
read more
![Alt text](_githubasserts/7.png)
you will have login or sign up to full use the app features.## search page
read more
![Alt text](_githubasserts/6.png)
the search page is where you can search for users for now.
## following page
read more
![Alt text](_githubasserts/4.png)
The following page is where you can vue the users you follow (for now);
## image and text post
you can currently only post either an image or text
likely more in new versions to come.## like & follow system
you can like a post or unlike it, comment and share are still not functional but the
like system is fully working together with the follow system and
bothare perfect and most secure.## Developer Page
The Developer Page empowers you to create API keys and Bots, which can be utilized on the `/api/v1` endpoint. These tools allow you to extend the functionality, incorporate additional features, and enhance the user experience.![Alt text](_githubasserts/dev.png)
## other user pages
other pages include comments page, post page, settings page, topics page, stories page and notifications page.## Plugins (beta feature)
with plugins you can extend the functionality of the app and add more features to the app.the plugin ui is on the admin dashboard.
## Admin dashboard
read more
![Alt text](_githubasserts/dashboard.png)
The Admin Dashboard allows you to see analytics and perform moderation functions### you can do the following on the dashboard
- see post,visits,activities analytics
- moderate
- install/uninstall plugins
- see new users and old users
- users online
- edit default app theme, name and configurations
- view the app logs
- email configuration
- api configurations
- Plugin support.# inspiration
my biggest inspiration to make this app was was the [KLIK social website](https://github.com/msaad1999/KLiK-SocialMediaWebsite) on github, thank you [msaad1999](https://github.com/msaad1999) for making an amazing project.
# behind it all
Hi, I am bethuel. This is a favourite project of mine that I really enjoy making, I made it 3 years ago as a way to help me learn programming.
hope you like it.more versions are to come check `HISTORY.md` for more.
if you like to contribute please don't mind sending a pull request I will
check it out, all ideas aloud.
[bethropolis](https://github.com/bethropolis)
# License
it is licensed under my favourate License [MIT license](https://mit-license.org/) _(do what you want :)_.