Development
Running Chalice
To turn on the virtual environment using pipenv:
pipenv shellTo install all necessary dependencies within pipenv from our repo (be sure to use --dev flag to install dev related packages such as pytest):
pipenv install --devTo install any additional dependencies within pipenv:
pipenv install {dependency name}Note: If you haven’t started the local Supabase instance yet, run:
supabase startSee the Setup guide for full instructions.
To enable local server for Chalice:
chalice localExploring & Testing API Endpoints: Tools & Tips
Calling APIs efficiently is essential for developers. While cURL requests are powerful, there are user-friendly alternatives:
Choose a tool that suits your comfort level and workflow. Both Postman and HTTPie streamline API testing and development tasks.