Welcome 👋 ! We glad to see that you are interested in contributing to GeoGuess.
Please note we have a code of conduct, please follow it in all your interactions with the project.
- GeoGuess is an open-source game
- GeoGuess is free
- GeoGuess is decentralized. Anyone can install its game server without any dependence on this repository
- GeoGuess keep in mind to have an educational goal
You need to configure Google Maps Platform and Firebase to make game work. See the instructions below.
Once you get an API key and register the project with Firebase, copy .env.dist
named .env
and replace all variables.
cp .env.dist .env
Download Node.js here if you don't have and make sure you can run npm
from the terminal.
# install dependencies
npm install
# Run the project
npm run serve
# build for production
npm run build
- Make sure
npm test
passes - Comments PR : We don't have rules about the PR description, just clearly explain what you have done
Update translation : https://translate.geoguess.games/
-
Add translation file in
src/lang/locale
followingen.json
-
Add the language in :
src/plugins/vuetify.js
// 1
import ru from 'vuetify/es5/locale/ru';
export default new Vuetify({
lang: {
locales: { en, fr, ja, cs, de, ru },// 2
},