All Projects → KryptedGaming → pathfinder-docker

KryptedGaming / pathfinder-docker

Licence: other
Deploying Pathfinder with Docker.

Programming Languages

shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to pathfinder-docker

uastar
Minimal A* implementation in C. No dynamic memory allocation.
Stars: ✭ 76 (+322.22%)
Mutual labels:  pathfinder
PDN
The official PyTorch implementation of "Pathfinder Discovery Networks for Neural Message Passing" (WebConf '21)
Stars: ✭ 44 (+144.44%)
Mutual labels:  pathfinder
Bryans-Preferred-Modules-for-FoundryVTT
My personally cultivated list of FoundryVTT Modules for Dungeons and Dragons 5e and Pathfinder 2e that play nicely together without creating an overwhelming amount of UI options or causing noticeable FPS drops.
Stars: ✭ 119 (+561.11%)
Mutual labels:  pathfinder
AlgorithmVisualizer
A better visualization of different algorithms made with React
Stars: ✭ 123 (+583.33%)
Mutual labels:  pathfinder
pathplanner
UI for generating trajectories with Pathfinder, based off of Vannaka's Motion Profile Generator
Stars: ✭ 21 (+16.67%)
Mutual labels:  pathfinder
openshift-wiki
Gitbook URL of WIKI
Stars: ✭ 16 (-11.11%)
Mutual labels:  pathfinder
A-Star
A* pathfinding library in Swift.
Stars: ✭ 34 (+88.89%)
Mutual labels:  pathfinder
Ngraph.path
Path finding in a graph
Stars: ✭ 2,545 (+14038.89%)
Mutual labels:  pathfinder
CLF reactive planning system
This package provides a CLF-based reactive planning system, described in paper: Efficient Anytime CLF Reactive Planning System for a Bipedal Robot on Undulating Terrain. The reactive planning system consists of a 5-Hz planning thread to guide a robot to a distant goal and a 300-Hz Control-Lyapunov-Function-based (CLF-based) reactive thread to co…
Stars: ✭ 21 (+16.67%)
Mutual labels:  pathfinder
pathfinder
Pathfinder is a tool for the visual exploration of paths in large graphs.
Stars: ✭ 25 (+38.89%)
Mutual labels:  pathfinder

Docker Build

Dockerfile for running Pathfinder, the mapping tool for EVE Online.

❤️ Added Websocket server support.

Installation

  1. Clone docker-compose.yml file
sudo wget https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/master/docker-compose.yml
  1. Clone the example .env file
sudo wget https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/master/.env
  1. Fill out the .env file and start up your instance
sudo docker-compose up -d

You may need to create the databases for your MYSQL image if using a fresh compose.

  • sudo docker-compose exec db /bin/bash
  • mysql -uroot -p
  • CREATE DATABASE pathfinder;
  • CREATE DATABASE eve_universe;

Setup

  1. Navigate to your Pathfinder page, go through setup.
  2. Create the databases using the database controls in the setup page.
  3. Import static database.
  4. Import from ESI at the Cronjob section of the setup page.
  5. Build Systems data index under Build search index in the Administration section of the setup page.
  6. Restart your container with SETUP=False.
  7. You're live!

Importing static database

  1. sudo wget https://github.com/exodus4d/pathfinder/raw/master/export/sql/eve_universe.sql.zip
  2. sudo unzip eve_universe.sql.zip
  3. sudo docker cp eve_universe.sql "$(sudo docker-compose ps | grep db | awk '{ print $1}'):/eve_universe.sql"
  4. sudo docker-compose exec db sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD" eve_universe < /eve_universe.sql'
  5. Optional sudo rm eve_universe.sql*
  6. Complete Setup.

Feel free to contribute, there are many improvements that still need to be made.

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].