Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 771 Bytes

File metadata and controls

32 lines (21 loc) · 771 Bytes

Running Django Commands

To set up and run your Django project, follow these steps:

  1. Make Migrations:

    python manage.py makemigrations
  2. Apply Migrations:

    python manage.py migrate
  3. Start the Django Development Server:

    python manage.py runserver

Testing APIs with Postman

Import the provided Postman collection file for testing the Tron Wallet APIs. Follow these steps:

  1. Open Postman.

  2. Click on the "Import" button.

  3. Select "Tron Wallet API.postman_collection.json" from your files.

  4. The collection will be imported, allowing you to test the APIs seamlessly.

Now you're ready to interact with your Django project and test the Tron wallet APIs using Postman.