Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antonio-hickey/gDash
gDash ( g- ) Open Source Intelligence Dashboard
https://github.com/antonio-hickey/gDash
osint python
Last synced: 17 days ago
JSON representation
gDash ( g- ) Open Source Intelligence Dashboard
- Host: GitHub
- URL: https://github.com/antonio-hickey/gDash
- Owner: antonio-hickey
- License: mit
- Created: 2021-04-09T05:57:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-12T16:42:22.000Z (almost 3 years ago)
- Last Synced: 2024-08-08T00:43:59.748Z (4 months ago)
- Topics: osint, python
- Language: Python
- Homepage:
- Size: 2.15 MB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - antonio-hickey/gDash - gDash ( g- ) Open Source Intelligence Dashboard (Python)
README
# gDash ( g- ) Open Source Intelligence Dashboard
![GitHub](https://img.shields.io/github/license/antonio-hickey/gDash)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/antonio-hickey/gDash/pre-commit)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/22cde5cda31d4f62ad1c627c715574b1)](https://www.codacy.com/gh/antonio-hickey/gDash/dashboard?utm_source=github.com&utm_medium=referral&utm_content=antonio-hickey/gDash&utm_campaign=Badge_Grade)
![GitHub commit activity](https://img.shields.io/github/commit-activity/w/antonio-hickey/gDash)
![XMR Address For Tips](https://img.shields.io/badge/Send%20Tip%20Via%20XMR-47piAitS3GiizBzZGywkyM7AEk5pnUGdYCCppXniARzoTuZ1fCSEiAYS1zPzdCdNuoC9wHVphYWJihTjyBesyEid5cojbZj-blue)Open Source Intelligence Dashboard for watching current event's unfold. Leveraging osint, python, and web frameworks for user's to spectate the macro world.
## Getting Started
### Running the app locally
I suggest creating a separate virtual environment running Python 3 for this app, and install all of the required dependencies there. Run in Terminal/Command Prompt:
```
git clone https://github.com/antonio-hickey/gDash/
cd gDash
python3 -m venv env
```
In UNIX system:```
source env/bin/activate
```
In Windows:```
env\Scripts\activate
```To install all of the required packages to this environment, simply run:
```
pip3 install -r requirements.txt
```and all of the required `pip` packages, will be installed, and the app will be able to run.
To run the app:
```
python3 application.py
```
which will output:```
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
```Go to the link `http://127.0.0.1:5000/`
### Updating gDash
Run the following command at the root of the gDash folder`git pull origin main`