CSCE 3444 Team Name: Silicon Valley
Read our Project Description.
DnDTracker is a campaign utility and data tracker for Dungeons and Dragons.
You can find master
live here and develop
here.
Here's what it does:
- Persists information about your current and past campaigns in a database.
- Provides the Dungeon Master with an interface of the campaign's current state and event log.
- Provides the players with an interface of their character's and campaign's current state.
- Allows the Dungeon Master to modify the characters' states.
- Authenticates users through Google's Auth API.
This code is open-source and under the MIT License.
itsmistad - Derek Williamson
tylercarey98 - Tyler Carey
nathanielduncan - Nathan Duncan
andrewschlein - Andrew Schlein
- bash (packaged with git and cmder)
- Node.js
- aws cli
- dynamodb-local
- NUnit3 Adapter
- .NET Core 2.2 Runtime and SDK
- Java
From within /scripts
, run this within bash to install the admin panel:
./install-dynamodb-admin.sh
Extract dynamodb-local
to ./scripts/dynamodb
.
Then, run this to start your local DynamoDb instance:
./start-dynamodb.sh
Run this to start your admin panel:
./start-dynamodb-admin.sh
Finally, run this to setup your local database:
./run-migrations.sh (timestamp)
timestamp
is optional. If one isn't specified, all migrations will run. Do not specify a timestamp if you don't know what you're doing.
From the base directory of the repo, run this to execute all unit tests:
dotnet test
Alternatively, you can run the tests from within Visual Studio:
Run this to download the packages and build the app:
dotnet build -c Release
Then, run this to start it:
dotnet ./src/DnDTracker.Web/bin/Release/netcoreapp2.2/DnDTracker.Web.dll
Alternatively, you could just use Visual Studio 😉
This script requires the bash zip
command. This is natively available in unix environments, but not on Windows. You can download it here.
You can create an AWS ElasticBeanstalk-ready zip file by running this command in ./scripts
AFTER adding credentials to the script file:
./create-deployable.sh
This will create a deploy
directory with a deployables
subdirectory.
dndtracker-app.zip
is the compiled application. deploy.zip
is the ElasticBeanstalk-ready deployable.
Please read the comments in the script before running.