An open API service indexing awesome lists of open source software.

https://github.com/jiya19g/sales-data-analysis


https://github.com/jiya19g/sales-data-analysis

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# SDA

A platform is developed where users can add products and submit reviews. The sentiment polarity of each review is classified as positive, negative, or neutral. The data is then mined using MATLAB, incorporating blockchain technology for secure storage and verification. Finally, the results are visualized in MATLAB to provide insights into review trends and sentiment distribution.

## Installation
Import the twitter.sql to your mysql database

### Fontawesome
Download fontawesome and include it in public/css/ the complete fontawesome folder

### Configuration File

Modify the app/config/config.php file according to your database credentials and also your root url

``` PHP
//Database Configuration
define('DB_HOST', '_YOUR_HOST');
define('DB_USER', '_YOUR_DATABSE_USERNAME');
define('DB_PASS', '_YOUR_DATABASE_PASSWORD');
define('DB_NAME', '_YOUR DATABASE_NAME');
// App Root
define('APPROOT', dirname(dirname(__FILE__)));
// URL Root
define('URLROOT', '_YOUR_URL_');
```

### Htaccess file

Modify the .htaccess file inside the public folder to match the name of your installation folder, Modify only the RewriteBase.

```

Options -Multiviews
RewriteEngine On
RewriteBase /twitter/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]

```

### Javascript files
Modify the javascript files in public/js. Change the url to your url. Files to modify, index.js, follow.js, search.js and profile.js
```Javascript
let url = 'http://localhost:8888/twitter/';
```