This RESTfull API was built for every aplication that need to get or collect data information from uvies database. To know how to take or perform any action based on desired, you can read our postman documentation to see all end point. More about Express
- Open the app's directory in CMD or Terminal
- Type
npm install
- Create a new file and name it as .env, set up first here
- Turn on Web Server and MySQL using Third-party tool like xampp, etc.
- Create a database with the name uvies_app, and Import file sql to phpmyadmin
- Open Postman desktop application or Chrome web app extension you have installed before
- Choose HTTP Method and enter request url.(ex. localhost:3000/)
- You can see all the end point here
Open .env file on your favorite code editor, and copy paste this code below :
DB_HOST = [Database_host]
DB_USER = [Database_username]
DB_PASS = [Database_password]
DB_PORT = [Database_port]
DB_NAME = uvies_app
SMTP_EMAIL = [Sender_email]
SMTP_PASSWORD = [Sender_email_password]