This bot was developed as an entry for Discord's Hack Week.
Setup Help Testing Contributing Contributors
- Clone the repository
git clone https://github.com/majordwarf/chronoside
- Navigate inside the repository
cd chronoside
- Install the dependencies ( yarn is recommended )
yarn
- Change the config data inside
config.json
- Run the bot
yarn start
Commands - ( $
- Prefix )
start
- Starts character creator to begin your adventure.
To add a new feature or fix a bug follow the steps -
- Make sure your local workspace is up-to-date with the main repository.
- Add the original repository as
upstream
in you local git remotegit remote add upstream https://github.com/majordwarf/chronoside
- Fetch the latest code
git fetch remote upstream master
- Checkout to your local master branch
git checkout master
- Merge changes from
upstream/master
to syncgit merge upstream/master
- Add the original repository as
- Create a new branch to work on the new feature or bug via the updated master branch
git checkout -b "branch_name"
- Work on feature/bug and stage all the files to commit it on that branch
git add .
>git commit -m "Commit Message"
- Push the branch to your fork
git push -u origin branch_name
- Create a pull request.
The Chronoside Bot was developed by @majordwarf, @segalll, and @gcttirth.