Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Dialogic | 2,314 | a day ago | 129 | mit | GDScript | |||||
💬 Create dialogs, characters and scenes to display conversations in your Godot games. | ||||||||||
Termloop | 1,220 | 1 | 2 years ago | May 28, 2021 | 5 | other | Go | |||
Terminal-based game engine for Go, built on top of Termbox | ||||||||||
Pythonstdiogames | 596 | 2 years ago | 12 | December 30, 2020 | 5 | mit | Python | |||
A collection of text-based games written in Python 3 that only use "standard i/o". | ||||||||||
Godot 3d Mannequin | 513 | 2 years ago | 10 | other | C# | |||||
An Open Source 3d character and character controller for the Godot game engine | ||||||||||
Openmu | 469 | 4 days ago | 13 | mit | C# | |||||
This project aims to create an easy to use, extendable and customizable server for a MMORPG called "MU Online". | ||||||||||
Legend Wings | 457 | 6 years ago | Swift | |||||||
iOS Swift Game - Push SpriteKit to the limit | ||||||||||
Pokemon Font | 439 | 3 years ago | January 18, 2017 | ofl-1.1 | CSS | |||||
GAME BOY font from Pokémon R/G/B/Y/G/S/C, Unicode extended. | ||||||||||
Rpg Core | 437 | 17 days ago | 1 | other | C# | |||||
UNITY engine RPG framework | ||||||||||
Ipokemon | 428 | 7 years ago | 9 | mit | Objective-C | |||||
PokéMon like game on iOS with Location Based Service. | ||||||||||
Dnd Tldr | 410 | 3 years ago | 9 | cc-by-sa-4.0 | ||||||
Dungeons and Dragons - Too Long; Didn't Read |
A cloud based character sheet for the Pathfinder Roleplaying Game.
The instructions assume hosting on Heroku. Adjust as necessary for different hosting platforms.
.env
file in the root of the project and fill it the required configuration, as per the example below.npm install && bower install
to get all dependenciesheroku local
HOST=http://localhost:5000
APP_FOLDER=/pathfinder
GOOGLE_CLIENT_ID=<id>.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=<secret>
GITHUB_CLIENT_ID=<id>
GITHUB_CLIENT_SECRET=<secret>
MONGOLAB_PAID=mongodb://<username>:<password>@<db_host>:<port>/<db>
The Node webserver is in server/web.js
. It will read and use the environment variables from your .env
file. It mounts several routes, of which these are of note:
/ The marketing site
/pathfinder_dev The development version of the app (from /app)
/pathfinder The production version of the app (from /dist)
The authentication process uses preconfigured URLs. When development, take care of the URl, as after logging in, you're probably redirect to /pathfinder
, even you come from /pathfinder_dev
before.
Here are some important and useful grunt tasks.
grunt build Builds the production version into /dist
grunt gss_pull Grabs the latest spell spreadsheet from d20pfsrd.com and writes it to `/app/data/spells_raw.json`
grunt prepare_spells Takes `spells_raw.json` and writes `spells.json` and `spell_names.json` for use by the app
Are welcome! Please send pull requests against the master branch.