All Projects → evepraisal → go-evepraisal

evepraisal / go-evepraisal

Licence: MIT License
the code that powers evepraisal.com

Programming Languages

go
31211 projects - #10 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to go-evepraisal

jeveassets
jEveAssets is an out-of-game asset manager for Eve-Online, written in Java
Stars: ✭ 98 (+60.66%)
Mutual labels:  eveonline
Morpheus
A Matrix client written in Go-QT
Stars: ✭ 20 (-67.21%)
Mutual labels:  golang-application
pathofexile-flatpak
Path of Exile Flatpak
Stars: ✭ 11 (-81.97%)
Mutual labels:  gaming
ganggo
MOVED TO https://git.feneas.org/ganggo
Stars: ✭ 32 (-47.54%)
Mutual labels:  golang-application
AutoSpotting
Saves up to 90% of AWS EC2 costs by automating the use of spot instances on existing AutoScaling groups. Installs in minutes using CloudFormation or Terraform. Convenient to deploy at scale using StackSets. Uses tagging to avoid launch configuration changes. Automated spot termination handling. Reliable fallback to on-demand instances.
Stars: ✭ 2,058 (+3273.77%)
Mutual labels:  golang-application
POE-TradeMacro
Price checking script for Path of Exile.
Stars: ✭ 963 (+1478.69%)
Mutual labels:  gaming
vga-passthrough
Up to date (2021) reference for setting up a VGA passthrough on (Ubuntu) Linux.
Stars: ✭ 171 (+180.33%)
Mutual labels:  gaming
zauth
2FA (Two-Factor Authentication) application for CLI terminal with support to import/export andOTP files.
Stars: ✭ 74 (+21.31%)
Mutual labels:  golang-application
TalkerMakerDeluxe
A FOSS Branching Game Dialogue Editor
Stars: ✭ 90 (+47.54%)
Mutual labels:  gaming
panzerlop
Configuration Guides for fixing things in Linux, Proton & KDE
Stars: ✭ 23 (-62.3%)
Mutual labels:  gaming
sms-gaming
🎮 Gaming platform powered by Twilio SMS.
Stars: ✭ 111 (+81.97%)
Mutual labels:  gaming
server
Server/API for Vela (Target's official Pipeline Automation Framework)
Stars: ✭ 74 (+21.31%)
Mutual labels:  golang-application
Arcadia-Auction
CSGO League App | Featured on Google DevLibrary
Stars: ✭ 17 (-72.13%)
Mutual labels:  gaming
gloriousctl
A utility to adjust the settings of Model O/D mice on Linux/BSD
Stars: ✭ 35 (-42.62%)
Mutual labels:  gaming
Apple-Silicon-Guide
Apple Silicon Guide. Learn all about the M1, M1 Pro, M1 Max, and M1 Ultra chips.
Stars: ✭ 240 (+293.44%)
Mutual labels:  gaming
RetroGamingWorkshop
Retro Gaming Workshop (first offered Winter 2018)
Stars: ✭ 15 (-75.41%)
Mutual labels:  gaming
StadiaIcons
A set of icons for games based on the Google Stadia logo.
Stars: ✭ 20 (-67.21%)
Mutual labels:  gaming
rss2email
Convert RSS feeds to emails
Stars: ✭ 72 (+18.03%)
Mutual labels:  golang-application
dcli
Command line utilities for Destiny 2
Stars: ✭ 49 (-19.67%)
Mutual labels:  gaming
Insight
Discord bot providing PvP activity tracking, intel, and utilities for the game EVE Online.
Stars: ✭ 27 (-55.74%)
Mutual labels:  eveonline

Evepraisal

Evepraisal is a bulk-price estimator for Eve Online.

Docker Instructions (production)

The following was tested on Ubuntu Server 18.10

  • Install docker.io
  $ sudo apt install docker.io
  • Install docker-compose
  $ sudo curl -L "https://github.com/docker/compose/releases/download/1.24.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
  $ sudo chmod +x /usr/local/bin/docker-compose
  • Download Dockerfile, docker-compose.yml, and evepraisal.toml to a directory
  $ wget https://raw.githubusercontent.com/evepraisal/go-evepraisal/master/Dockerfile
  $ wget https://raw.githubusercontent.com/evepraisal/go-evepraisal/master/docker-compose.yml
  $ wget https://raw.githubusercontent.com/evepraisal/go-evepraisal/master/evepraisal.toml
  • build, and bring the container up
  $ docker-compose up

Instructions (development)

The following was tested on Ubuntu Server 18.10

  • Install golang 1.11
  ~$ curl https://dl.google.com/go/go1.11.10.linux-amd64.tar.gz | tar xz
  ~$ sudo mv go /usr/local
  ~$ echo 'export GOROOT=/usr/local/go' >>~/.profile
  ~$ echo 'export GOPATH=$HOME/go' >>~/.profile
  ~$ echo 'export PATH=$GOPATH/bin:$GOROOT/bin:$PATH' >>~/.profile
  ~$ echo 'export GO111MODULE=on' >>~/.profile
  ~$ source ~/.profile
  • Install build requirements
  ~$ sudo apt install git gcc musl-dev make
  • Download and build evepraisal
  ~$ mkdir -p $GOPATH/src/github.com/evepraisal/go-evepraisal
  ~$ cd $GOPATH/src/github.com/evepraisal/go-evepraisal
  ~/go/src/github.com/evepraisal/go-evepraisal$ git clone https://github.com/evepraisal/go-evepraisal.git .
  ~/go/src/github.com/evepraisal/go-evepraisal$ make setup
  ~/go/src/github.com/evepraisal/go-evepraisal$ make build
  • Run evepraisal
  ~/go/src/github.com/evepraisal/go-evepraisal$ ./target/evepraisal-linux-amd64
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].