Skip to content

Commit

Permalink
feat(nx-cloud): setup nx cloud workspace
Browse files Browse the repository at this point in the history
    
This commit set up Nx Cloud for your Nx workspace enabling distributed caching
and GitHub integration for fast CI and improved Developer Experience.

You can access your Nx Cloud workspace by going to 
https://cloud.nx.app/orgs/66ff236ce701a83caf24f7d4/workspaces/66ff23d99fb700eb0f2270df

**Note:** This commit attempts to maintain formatting of the nx.json, however you may need to correct formatting by running an nx format command and committing the changes.
  • Loading branch information
nklomp committed Oct 3, 2024
1 parent 888df19 commit 511af20
Showing 1 changed file with 15 additions and 42 deletions.
57 changes: 15 additions & 42 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,18 @@
{
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/coverage"]
},
"build:clean": {
"dependsOn": []
},
"start:prod": {
"dependsOn": ["build"]
},
"start:dev": {
"dependsOn": []
},
"generate-plugin-schema": {
"dependsOn": []
},
"typeorm": {
"dependsOn": []
},
"typeorm-sqlite:migration:generate": {
"dependsOn": []
},
"typeorm-sqlite:migration:run": {
"dependsOn": []
},
"typeorm-postgres:migration:generate": {
"dependsOn": []
},
"typeorm-postgres:migration:run": {
"dependsOn": []
},
"build:copyfilesdis": {
"dependsOn": []
},
"start:energyshr": {
"dependsOn": []
},
"start:dev2": {
"dependsOn": []
}
}
"build": { "cache": true, "dependsOn": ["^build"], "outputs": ["{projectRoot}/coverage"] },
"build:clean": { "dependsOn": [] },
"start:prod": { "dependsOn": ["build"] },
"start:dev": { "dependsOn": [] },
"generate-plugin-schema": { "dependsOn": [] },
"typeorm": { "dependsOn": [] },
"typeorm-sqlite:migration:generate": { "dependsOn": [] },
"typeorm-sqlite:migration:run": { "dependsOn": [] },
"typeorm-postgres:migration:generate": { "dependsOn": [] },
"typeorm-postgres:migration:run": { "dependsOn": [] },
"build:copyfilesdis": { "dependsOn": [] },
"start:energyshr": { "dependsOn": [] },
"start:dev2": { "dependsOn": [] }
},
"nxCloudId": "66ff23d99fb700eb0f2270df"
}

0 comments on commit 511af20

Please # to comment.