diff --git a/netlify.toml b/netlify.toml index c211737..29e0245 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,23 @@ [[redirects]] from = "/" to = "/en/4/" + +[[redirects]] + from = "/contributing" + to = "/en/4/contributing/" + +[[redirects]] + from = "/en/4/getting_started/installation/common_problems" + to = "/en/4/getting_started/common_problems/" + +[[redirects]] + from = "/en/4/getting_started/installation/server_requirements" + to = "/en/4/getting_started/server_requirements/" + +[[redirects]] + from = "/en/3/getting_started/installation/common_problems" + to = "/en/3/getting_started/common_problems/" + +[[redirects]] + from = "/en/3/getting_started/installation/server_requirements" + to = "/en/3/getting_started/server_requirements/" diff --git a/package.json b/package.json index 632acba..7221786 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,14 @@ { - "name": "gatsby-starter-default", + "name": "doc-silverstripe-org", "private": true, - "description": "A simple starter to get up and developing quickly with Gatsby", - "version": "0.1.0", - "author": "Kyle Mathews ", + "description": "The Silverstripe CMS documentation website (docs.silverstripe.org)", + "version": "1.0.0", + "author": "Aaron Carlino ", + "contributors": [ + { + "name": "The Silverstripe Community" + } + ], "dependencies": { "@types/react-helmet": "^5.0.14", "@types/styled-components": "^4.1.21", @@ -55,24 +60,23 @@ "typescript": "^3.7.2" }, "keywords": [ - "gatsby" + "silverstripe", "documentation" ], - "license": "MIT", + "license": "BSD-3", "scripts": { "build": "gatsby build", "develop": "gatsby develop", "format": "prettier --write src/**/*.{js,jsx}", "start": "npm run develop", "serve": "gatsby serve", - "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"", "type-check": "tsc --noEmit", "lint": "tslint --project ." }, "repository": { "type": "git", - "url": "https://github.com/gatsbyjs/gatsby-starter-default" + "url": "https://github.com/silverstripe/doc.silverstripe.org" }, "bugs": { - "url": "https://github.com/gatsbyjs/gatsby/issues" + "url": "https://github.com/silverstripe/doc.silverstripe.org/issues" } }