Skip to content

Latest commit

 

History

History
60 lines (35 loc) · 1.7 KB

README.md

File metadata and controls

60 lines (35 loc) · 1.7 KB

Onelogger

Build Status Code Size in bytes Python Versions GSoC Heat

forthebadge forthebadge forthebadge

This is an open source IP Logger with Private IP Logging capability. For now it can log any target's Public/Private IPs and User-Agent.

For contributors

If you want to contribute to this project then have a look CONTRIBUTING.md

Building from Source

  1. Create a virtual environment with venv(install venv, if its not installed).

    python3 -m venv django-env
    
    
  2. Clone the project in the same directory.

    git clone https://github.com/realsdx/onelogger.git
    
    
  3. Activate the virtual environemnt.

    For Linux/Mac OSX

    source dajngo-env/bin/activate
    
    

    For Windows

    I don't care, find it yourself.

  4. Install the requirements.

    cd onelogger
    pip install -r requirements.txt
    
    
  5. Migrate your database and run the Django Development Server.

    python manage.py makemigrations
    python manage.py migrate
    python manage.py runserver
    
    
  6. Open http://localhost:8000 in your browser.