Built with Heroku and AWS database
- Install mySQL
- Create database
- Update config with local database properties (./util/config.ts)
- (Comment out config to use default [localhost:3306])
npm install
npm start
- Tables are automatically created in devMode when first API endpoint is hit.
- autoSchemaSync on remote DBs isn't working well, yet. In the meantime, once table structure is built locally, you can export structure to a remote DB using
dumpSQLStructure.shin./migrationswith the command:
sh dumpSQLStructure.sh password (where password is your DB password).