Features:
- Easy-to-build, risk-free installation
- Simple Bootstrap Admin Dashboard
- Deployable to the Internet
- Serverless (at the moment)
- Expansive to any OS
How to Install?
Quick Way:
$ curl https://raw.githubusercontent.com/ex0dus-0x/D0xk1t/master/extras/install | sudo /bin/bash
Manual Way:
$ git clone https://github.com/ex0dus-0x/D0xk1t && cd D0xk1t
$ # Start virtualenv if you wish
$ pip install -r requirements.txt
$ python run.py
Configuration:
Open config.py. Here, you will see all the environmental variables that the application utilizes. Three important fields you MUST be aware of if you plan to deploy to the web.
GOOGLEMAPS_API_KEY = “YOUR_API_KEY_HERE”
SECRET_KEY = ‘SECRET_KEY_HERE’
GOOGLEMAPS_API_KEY denotes the Google Maps API Key. This is essential for the GeoIP module. You can obtain it here and change the variable accordingly.
SECRET_KEY is the private key utilized by WTForm’s CSRF protection feature. If deployed, change it to your liking.
Learn more here.