GaelMagnan / Starmap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contributors Forks Stargazers Issues MIT License

Product Name Screen Shot

A 3D public map for the game Starbase.
Additionally includes support for creating private maps

Explore the docs »

View Project · Report Bug · Request Feature

ISAN Starmap is a navigation system developed for the purpose storing and calculating system coordinates around the Starbase solar system.

For a more descriptive explanation about the ISAN Starmap please read the: ISAN Documentation

Getting Started

To play around with a local copy of ISAN Starmap run these following steps.

Using Docker

Prerequisites

Ensure you have docker installed on your computer: https://www.docker.com/

Installation

  1. Clone the repo using the command: sh git clone https://github.com/Collective-SB/Starmap
  2. In the new directory /Starmap run the command:
    docker build -t starmap
  3. (bis): If you want to call another remote point than local you can change the options at build time with the command:
    docker build -t starmap --build-arg ENV_FROM_ENVJS="remoteDev" --build-arg AUTH_REDIR_FROM_ENVJS="remoteDev" .
  4. Now you can run the command:
    docker run -p 8000:443 -d starmap
  5. Finally to test that it is working, In your browser type in: http:\\localhost:8000\ and you should now see the ISAN Starmap loading.

Without Docker

Prerequisites

Ensure you have nodejs installed on your computer (can check by running the command node -v). If you don't then go to https://nodejs.org/en/ and follow the instructions.

Installation

  1. Clone the repo using the command:
    git clone https://github.com/Collective-SB/Starmap
  2. In the new directory /Starmap run the command:
    npm install
  3. Create a new file called .env (in the same directory).
    Copy this into that file and save:
    PORT=80
  4. Create a new file called env.js, place this file in the public\js folder.
    The content of the file should be:
    export const ENV_FROM_ENVJS = "remoteDev";
    export const AUTH_REDIR_FROM_ENVJS = "local";
  5. Start the server by running:
    node index.js
  6. Finally to test that it is working, In your browser type in: http:\\localhost\ and you should now see the ISAN Starmap loading.

Roadmap

See the open issues for a list of proposed features (and known issues).

Acknowledgements

ISAN Starmap Team Members:

  • Strikeeaglechase: Lead JS Developer [Github]
  • VolcanoCookies: JS Developer [Github]
  • AlexAndHisScripts/IHave: Early Front End/JS Developer [Github]
  • Timothy Howard: UI/UX Developer [Github | Linkedin]
  • MuNk: Extensive API Testing [Github]

Thanks to the old Starmap team for the inspiration

  1. Peter Shepherd: JS Developer [Linkedin]
  2. Maximilian Lambert: JS Developer [Linkedin]
  3. Timothy Howard: UI/UX Developer [Linkedin | Github]

Built With

License

ISAN Starmap is an open source client built on top of the Starmap API made to allow storage of ISAN locations Copyright (C) 2020 Strikeeaglechase

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, orany later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

About

License:GNU General Public License v3.0


Languages

Language:JavaScript 53.4%Language:HTML 23.5%Language:CSS 21.9%Language:Python 0.9%Language:Dockerfile 0.2%