-
Copy the
.env.example
file:If you don't have an
.env
file, start by copying the provided.env.example
file.cp .env.example .env
-
Open the .env file:
Use your preferred text editor to open the .env file.
nano .env
-
Update the Database Configuration:
Locate the database configuration section in the .env file. Update it to match your provided database information:
DB_HOST=your_database_host DB_PORT=your_database_port DB_DATABASE=your_database_name DB_USERNAME=your_database_username DB_PASSWORD=your_database_password DB_DEBUG=false
Replace the placeholder values (
your_database_name
,your_database_user
,your_database_password
) with your actual database information. SetDB_DEBUG
totrue
if you want to enable query logging to the console. -
Import Postman Collection: Use Postman to import the provided collection file Mygram Postman to your postman for testing superindo API.