diff --git a/docs/install.md b/docs/install.md index 744801a5f..3dcbd7fcb 100644 --- a/docs/install.md +++ b/docs/install.md @@ -5,7 +5,7 @@ Web Template Studio runs as a VSCode extension and hence you'll need to have _VScode_ installed. Also, you'll need _Node_ and _npm_/_yarn_ to run the generated templates. -## Installing the latest Project Acorn Release +## Installing the latest Microsoft Web Template Studio Release 1. Get the latest release from Web Template Studio [Github releases](https://github.com/Microsoft/WebTemplateStudio/releases) 2. Scroll down to _Assets_ and download the `.vsix` file diff --git a/mocks/materialui-multi-page/README.md b/mocks/materialui-multi-page/README.md index a260f04d2..c8589e884 100644 --- a/mocks/materialui-multi-page/README.md +++ b/mocks/materialui-multi-page/README.md @@ -29,7 +29,7 @@ Additional documentation can be found here: [Cosmos Docs](https://github.com/Mic ### Azure Functions -An Azure Function with a Node runtime stack and HTTP trigger has been deployed to Azure. Project Acorn +An Azure Function with a Node runtime stack and HTTP trigger has been deployed to Azure. Microsoft Web Template Studio has also generated a folder containing the code deployed to Azure Functions. To edit and redeploy the Azure Function it is recommended to install the [Azure Functions Extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions). Additional documentation can be found here: [Azure Function Docs](https://github.com/Microsoft/WebTemplateStudio/blob/dev/docs/services/azure-functions.md). @@ -82,4 +82,4 @@ development front-end and back-end communicate via a proxy defined in the packag - Mongo/Mongoose - https://mongoosejs.com/docs/guide.html - Cosmos DB - https://docs.microsoft.com/en-us/azure/cosmos-db/mongodb-mongoose -This project was created using [Project Acorn](https://github.com/Microsoft/WebTemplateStudio). +This project was created using [Microsoft Web Template Studio](https://github.com/Microsoft/WebTemplateStudio). diff --git a/mocks/materialui-multi-page/package.json b/mocks/materialui-multi-page/package.json index 2d2d07e6e..335ada33f 100644 --- a/mocks/materialui-multi-page/package.json +++ b/mocks/materialui-multi-page/package.json @@ -1,5 +1,5 @@ { - "name": "ProjectAcorn", + "name": "MicrosoftWebTemplateStudio", "version": "0.1.0", "private": true, "dependencies": { diff --git a/mocks/materialui-multi-page/server/app.js b/mocks/materialui-multi-page/server/app.js index 713a27a68..07c4ae3c9 100644 --- a/mocks/materialui-multi-page/server/app.js +++ b/mocks/materialui-multi-page/server/app.js @@ -24,7 +24,7 @@ app.use((req, res, next) => { next(createError(404)); }); -// TODO Project Acorn: Add your own error handler here. +// TODO Web Template Studio: Add your own error handler here. if (process.env.NODE_ENV === "production") { // Do not send stack trace of error message when in production app.use((err, req, res, next) => { diff --git a/mocks/materialui-multi-page/server/mongo/mongoModel.js b/mocks/materialui-multi-page/server/mongo/mongoModel.js index a2f63321c..fc2566430 100644 --- a/mocks/materialui-multi-page/server/mongo/mongoModel.js +++ b/mocks/materialui-multi-page/server/mongo/mongoModel.js @@ -1,7 +1,7 @@ const mongoose = require("mongoose"); const CONSTANTS = require("../constants"); -// TODO Project Acorn: The Cosmos Mongo Database is set up to hold a collection called ListItems which contains documents +// TODO Web Template Studio: The Cosmos Mongo Database is set up to hold a collection called ListItems which contains documents // with the following schema. Define your own schema for the Cosmos MongoDB using mongoose (https://mongoosejs.com/docs/index.html). const ListItem = mongoose.model( CONSTANTS.COSMOS.COLLECTION, diff --git a/mocks/materialui-multi-page/server/sampleData.js b/mocks/materialui-multi-page/server/sampleData.js index d6da54bb0..016b2f5fe 100644 --- a/mocks/materialui-multi-page/server/sampleData.js +++ b/mocks/materialui-multi-page/server/sampleData.js @@ -18,9 +18,9 @@ const shortLoremIpsum = `Lorem id sint aliqua tempor tempor sit. Ad dolor dolor const header = "Heading"; // This class holds sample data used by some generated pages to show how they can be used. -// TODO Project Acorn: Delete this file once your app is using real data. +// TODO Web Template Studio: Delete this file once your app is using real data. -// TODO Project Acorn: If you use a database replace this ID with the ID created by the database +// TODO Web Template Studio: If you use a database replace this ID with the ID created by the database sampleData.listID = 3; sampleData.listTextAssets = [ diff --git a/mocks/materialui-multi-page/server/server.js b/mocks/materialui-multi-page/server/server.js index 3150774ad..e88fd9478 100644 --- a/mocks/materialui-multi-page/server/server.js +++ b/mocks/materialui-multi-page/server/server.js @@ -4,7 +4,7 @@ * Module dependencies. */ -const debug = require("debug")("ProjectAcornExpress:server"); +const debug = require("debug")("WebTemplateStudioExpress:server"); const http = require("http"); const app = require("./app"); const CONSTANTS = require("./constants"); diff --git a/mocks/materialui-multi-page/server/sql/sqlController.js b/mocks/materialui-multi-page/server/sql/sqlController.js index 7805f6fe1..7535c597e 100644 --- a/mocks/materialui-multi-page/server/sql/sqlController.js +++ b/mocks/materialui-multi-page/server/sql/sqlController.js @@ -31,7 +31,7 @@ module.exports = class SQLController { // Post a new item to the ListItem container in Cosmos Core SQL List database async create(req, res, next) { - // TODO Project Acorn: The Cosmos Core SQL Database is set up to hold a container called ListItems which contains documents + // TODO Web Template Studio: The Cosmos Core SQL Database is set up to hold a container called ListItems which contains documents // with the following schema. Define your own schema to add documents to the container here. var listItem = { text: req.body.text diff --git a/mocks/materialui-multi-page/src/App.jsx b/mocks/materialui-multi-page/src/App.jsx index 4b795f516..4817e7f39 100644 --- a/mocks/materialui-multi-page/src/App.jsx +++ b/mocks/materialui-multi-page/src/App.jsx @@ -8,7 +8,7 @@ import List from "./components/List"; import Blank from "./components/Blank"; import MasterDetail from "./components/MasterDetail"; -//TODO Project Acorn: Add routes for your new pages here. +// TODO Web Template Studio: Add routes for your new pages here. class App extends Component { render() { return ( diff --git a/mocks/materialui-multi-page/src/components/NavBar/index.jsx b/mocks/materialui-multi-page/src/components/NavBar/index.jsx index f698a6332..771ecaf11 100644 --- a/mocks/materialui-multi-page/src/components/NavBar/index.jsx +++ b/mocks/materialui-multi-page/src/components/NavBar/index.jsx @@ -1,6 +1,6 @@ import React from "react"; -//TODO Project Acorn: Add a new link in the NavBar for your page here. +//TODO Web Template Studio: Add a new link in the NavBar for your page here. export default function NavBar() { return (