My personal blog website, written in Flutter.
Project generated by the Very Good CLI 🤖
Blog content provided by Butter CMS.
Running the project locally requires supplying a tasks.json
file in the .vscode
directory. This file is ignored as it contains sensitive environment values. The file should look like the following:
{
"version": "2.0.0",
"tasks": [
{
"label": "Start API",
"command": "dart_frog dev",
"type": "shell",
"isBackground": true,
"options": {
"cwd": "api",
"env": {
"BUTTER_CMS_API_KEY": "{\"BUTTER_CMS_API_KEY\":\"butter-cms-key\"}",
"CORS_ALLOW_ORIGIN": "cors-allow-origin"
}
},
"problemMatcher": []
}
]
}