I get the below error.
I have also tried commenting and uncommenting the line about the “plan”
A `render.yaml` file was found, but there was an issue.
services[1].plan
no such plan free for service type web
and the top part of my yaml is:
databases:
- name: blah-db
databaseName: blah
user: blah
services:
# Django Backend API
- type: web
name: blah-backend
env: python
# plan: free
buildCommand: |
cd backend
pip install -r requirements.txt
python manage.py collectstatic --noinput
python manage.py migrate
startCommand: |