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_management
folder into MySQL. Addionally, in thesource code
folder add an.env
file 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 build
to convert Typescript code to Javascript Code andnpm run start
to use the API.