You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stop all gunicorn workers in and start a single worker in the foreground
# This makes it easy to see tracebacks or drop into ipython
docker exec -it ecaz-app-1 ./debug.sh
Deploy to production
./deploy.py [--push] [--tag TAG]
Run tests
./test.sh
# or
./test.sh 'application/tests/test_some_file.py::test_some_function'
API
importrequestsjwt=""# Generate JWT through UI after logging inurl='http://localhost'# or 'https://ecaz.xyz'resp=requests.get(f'{url}/api/v1/comment/<comment-id>', headers={'Authorization': f'Bearer {jwt}'})
resp.json()