A web tabletop app for roleplaying games.
Report Bug
·
Request Feature
Table of Contents
This project is a digital version of Aria's role-playing game from Games of roles. The project aims to allow everyone to play where and when they want, on desktop or mobile. Create your campaign your characters and play.
The application is on the React framework thanks to the service of Firebase
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
- Create a project on Firebase
- Get the Firebase config and create a .env file on the root
REACT_APP_API_KEY=""
REACT_APP_AUTHDOMAIN=""
REACT_APP_PROJECT_ID=""
REACT_APP_STORAGEBUCKET=""
REACT_APP_MESSAGING_SENDER_ID=""
REACT_APP_APP_ID=""
REACT_APP_MEASUREMENT_ID=""
REACT_APP_DATABASE=""
- Activate the Firebase auth configuration for google on "Sign-in method"
- Change the rules of Cloud Firestore for :
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if request.auth.uid != null;
}
}
}
- Change the rules of Real Time Database for :
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
- Clone the repo
git clone https://github.com/Qboussard/Pray-the-dice.git
- Install NPM packages
yarn install
Start the server
yarn start
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Praythedice - @Gaviil_ Project Link: https://github.com/Qboussard/Pray-the-dice