mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
6ca3b6d32c
We want to allow developers to customize their own vscode environment. Including launch.json/tasks.json files in the repository makes this very difficult. These were originally added for GitHub codespaces. Once codespaces is more widely available, we can look into automatically copying the `.vscode-sample` directory to `.vscode` when the codespace boots.
13 lines
372 B
JSON
13 lines
372 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Prepare discourse",
|
|
"type": "shell",
|
|
"command": "cd /home/discourse/workspace/discourse && bundle install && yarn && bin/rake db:migrate"
|
|
},
|
|
],
|
|
}
|