An user (login, register) management database free api microservice to use in any project
Typescript Express Node MySQL
- Go to Releases page and download the lastest version (Source code and Database).
- Import
BU_user_managementfolder into MySQL. Addionally, in thesource codefolder add an.envfile with the next configuration (use your mysql credentials):
DB_HOST=mysqlhost
DB_USER=mysqluser
DB_PASSWORD=mysqlpassword
DB_DATABASE=mysqldatabasename
DB_PORT=mysqlport
PORT=apiport
PRIVATE_KEY=foo
- In the source code folder cmd run
npm install. Then,npm run buildto convert Typescript code to Javascript Code andnpm run startto use the API.