Gauntlet is a Typescript server template to kick-off your development fast š„š„š„
Demo site: https://gauntlet-demo.herokuapp.com
git clone https://github.com/UltraRangers/gauntlet.git
npm install
config/server/ormconfig.development.json
. Change the username, password and database name on your own. Each ormconfig.json
is used by different environements. Change accordingly for the desired environment (dev, test, prod)
{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "postgres",
"database": "gauntlet-development"
}
npm start
To run the test suites, type in your terminal
npm run test
Take note that you need to change your database config for test environment. See installing on how to setup database.
Open for pull requests!
We use SemVer for versioning. For the versions available, see the tags on this repository