Skip to content

realsdx/onelogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.