All Projects → roxlukas → lmeve

roxlukas / lmeve

Licence: other
LMeve - industry manager and contribution tracker for EVE Online

Programming Languages

javascript
184084 projects - #8 most used programming language
PHP
23972 projects - #3 most used programming language
CSS
56736 projects
shell
77523 projects
Dockerfile
14818 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to lmeve

eve online
EveOnline ESI API
Stars: ✭ 23 (-55.77%)
Mutual labels:  eve-online, eve
LazyBlacksmith
EVE Online Industry app written in python (flask) for backend, html / css / js for frontend
Stars: ✭ 44 (-15.38%)
Mutual labels:  eve-online, industry
Priceall
Easy appraisal checking.
Stars: ✭ 16 (-69.23%)
Mutual labels:  eve-online
yapeal
Yet Another Php Eve Api Library also know as Yapeal which can be used to access the Eve Online API data and place it into a database.
Stars: ✭ 12 (-76.92%)
Mutual labels:  eve
fever
fast, extensible, versatile event router for Suricata's EVE-JSON format
Stars: ✭ 47 (-9.62%)
Mutual labels:  eve
PyEveLiveDPS
PyEveLiveDPS (PELD) is a live DPS calculator and grapher for EVE Online
Stars: ✭ 127 (+144.23%)
Mutual labels:  eve-online
Opux
Opux is a Discord bot for EVEOnline
Stars: ✭ 13 (-75%)
Mutual labels:  eve
iotagent-opcua
IoT Agent for OPC UA protocol
Stars: ✭ 28 (-46.15%)
Mutual labels:  industry
elinor-reloaded
Trading tool for Eve Online
Stars: ✭ 29 (-44.23%)
Mutual labels:  eve-online
ESP8266-HomeKit-Air-Quality-Sensor-Elgato-Eve-Room
ESP8266 based  Homekit Indoor Air Quality sensor that acts like Eve Room🌱
Stars: ✭ 58 (+11.54%)
Mutual labels:  eve
ml-ai
ML-AI Community | Open Source | Built in Bharat for the World | Data science problem statements and solutions
Stars: ✭ 32 (-38.46%)
Mutual labels:  industry
pdf-issues
Industry-based resolutions for issues and errata reported against any PDF-related ISO standard
Stars: ✭ 40 (-23.08%)
Mutual labels:  industry
DLIndustriesView
Choose industry
Stars: ✭ 12 (-76.92%)
Mutual labels:  industry
bots
Programming bots to play video games
Stars: ✭ 106 (+103.85%)
Mutual labels:  eve-online
esiJS
A simple Node module for EVE Onlines' ESI.
Stars: ✭ 17 (-67.31%)
Mutual labels:  eve-online
eve-abyssal-market
An abyssal module marketplace for EVE Online.
Stars: ✭ 21 (-59.62%)
Mutual labels:  eve-online
goesi
Go client for EVE Online ESI and SSO using versioned endpoints
Stars: ✭ 59 (+13.46%)
Mutual labels:  eve-online
localthreat
Paste the transcript or members from chat to get a report of affiliations and PvP stats.
Stars: ✭ 21 (-59.62%)
Mutual labels:  eve-online
CyberICS.github.io
News and publication on cybersecurity in industry
Stars: ✭ 29 (-44.23%)
Mutual labels:  industry
jeveassets
jEveAssets is an out-of-game asset manager for Eve-Online, written in Java
Stars: ✭ 98 (+88.46%)
Mutual labels:  eve-online

About

This project was started at the request of Aideron Technologies CEO in 2013. This software is basically an advanced prototype. Code beauty was not a priority, moreover this is not in objective PHP, just plain-old structural PHP. I had plans to refactor entire project into CodeIgniter framework, but this plan is currently on hold.

More information: http://pozniak.pl/wp/?tag=lmeve

Official Discord channel: https://discord.gg/9yBhuPd

Please do not contact "Lukas Rox" in game for support, because he does not play eve

If you find a problem, please come to official Discord channel here https://discord.gg/9yBhuPd and/or open an Issue on GitHub project page: https://github.com/roxlukas/lmeve/issues

Try the LMeve Database module here: http://pozniak.pl/database/index.php follow lmeve production and get more information: http://pozniak.pl/wp/?tag=lmeve

This app requires EVE Online corporation CEO ESI keys to function. All Eve Related Materials are Property Of CCP Games

Please do not contact "Lukas Rox" in game for support, because I do not read eve-mail

If you find a problem, please open an Issue on GitHub project page: https://github.com/roxlukas/lmeve/issues

Setup instructions

Steps for installing LMEVE :
1. install LmEvE core
2. install dependancies
3. configure apache2
4. configure mysql
5. lmeve graphics
6. Registering with ccp
7. Finalization

1 install lmeve core :
cd /var/www
sudo git clone https://github.com/roxlukas/lmeve


2 install lmeve dependancies :

sudo apt-get install php-mysql php-pear apache2 libapache2-mod-php
php-cli php-dev libyaml-dev, php-mbstring
python-yaml mysql-server mysql-client unzip


3 Configure Apache2 :
sudo nano /etc/apache2/sites-enabled/000-default.conf
change DocumentRoot to : /var/www/lmeve/wwwroot


4 Configure MySQL install :
sudo mkdir /Incoming
cd /Incoming
sudo wget "https://www.fuzzwork.co.uk/dump/mysql-latest.tar.bz2"
tar -xjf mysql-latest.tar.bz2 --wildcards --no-anchored 'sql' -C /Incoming/ --strip-components 1
sudo mv .sql /Incoming/staticdata.sql
sudo mysql
CREATE DATABASE lmeve;
CREATE DATABASE EveStaticData;
USE lmeve;
source /var/www/lmeve/data/schema.sql;
USE EveStaticData;
source /Incoming/staticdata.sql;
CREATE USER 'lmeve'@'%' IDENTIFIED BY 'lmpassword'; //<-- your custom password here
GRANT ALL PRIVILEGES ON lmeve.
TO 'lmeve'@'%'; // Change % to your lmeve internal network address
GRANT ALL PRIVILEGES ON EveStaticData.
TO 'lmeve'@'%'; // Change % to your lmeve internal network address
FLUSH PRIVILEGES;


5 install lmeve icons and graphics
//remove placeholder ccp icon and img folders, download image package
cd /var/www/lmeve/wwwroot
sudo rm -fr ccp_icons ccp_img
cd /Incoming
sudo wget www.ash-online.net/lmevegfx/lmevegfx.tar.gz
sudo tar -zjvf lmevegfx.tar.gz -C /

6 Configure CCP Developer application using the lmeve sso config guide :
https://github.com/roxlukas/lmeve/wiki/Integrating-LMeve-with-EVE-SSO

7 Finalize installation :
cd /var/www/lmeve/config
sudo nano config-dist.php
edit the config file and save it as config.php
Set up API poller in cron to run every 15 minutes - */15 * * * * apache2/bin/php -h /var/www/lmeve/bin/poller.php
login to lmeve using admin / admin credentials and wait a few minutes while lmeve parses and alters database tables
Change admin password in Settings
Create a user accout for yourself
Logout, Login with your new account
Add corp ESI key in Settings -> ESI Keys

Credits and copyrights

  • LMeve by Lukasz "Lukas Rox" Pozniak

  • LMframework v3 by 2005-2014 Lukasz Pozniak

  • rixxjavix.css skin by Bryan K. "Rixx Javix" Ward

Thanks!

  • TheAhmosis and Razeu - it's their idea that I had the pleasure to wrap in code
  • Crysis McNally - for excellent ideas and thorough testing
  • Aideron Technologies - for excellent closed beta
  • CCP Games - for making such a great game and providing API for us, developer kind, to tinker with
  • To all supporters and donators. Thank you!

Donations are welcome!

According to CCP Developers License paragraph 4 section 4 (https://developers.eveonline.com/resource/license-agreement) you can buy me a coffe or help fund the server.

If you'd like to support the development, feel free to do so: https://www.paypal.me/roxlukas

Top donators:

Starfire Dai, Crysis McNally
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].