You can initialize your database according to the init command in wsgi.py by running the following command:
flask init
It is a good idea to run this after every change to models.
When opened in gitpod the server should be running already if it isn't you can start it with the following command:
flask run
- To ensure the latest version of the test suite is downloaded, run:
npm run update-tests
- Ensure Postman is setup to point to your assignment's Gitpod url as the host variable.
- Test your application by running the requests of the Postman collection linked above and viewing the Test Results tab
When all of your routes are implemented you can run the entire collection of tests.
You should pay particular attention to the example requests and responses and the test results to ensure your application is meeting the required specification.