Browse Source

chore: Bump alpha version and update docs & cli config template

Michael Bromley 7 years ago
parent
commit
c41bd2aed5

+ 2 - 1
docs/content/docs/getting-started.md

@@ -106,7 +106,8 @@ $ node index
 
 Assuming the default config settings, you can now access:
 
-* The Vendure GraphQL API: [http://localhost:3000/api](http://localhost:3000/api)
+* The Vendure Admin GraphQL API: [http://localhost:3000/admin-api](http://localhost:3000/admin-api)
+* The Vendure Shop GraphQL API: [http://localhost:3000/shop-api](http://localhost:3000/shop-api)
 * The Vendure Admin UI: [http://localhost:3000/admin](http://localhost:3000/admin)
 
 {{% alert primary %}}

+ 2 - 1
server/cli/assets/vendure-config.hbs

@@ -17,7 +17,8 @@ const path = require('path');
         sessionSecret: '{{ sessionSecret }}',
     },
     port: 3000,
-    apiPath: 'api',
+    adminApiPath: 'admin-api',
+    shopApiPath: 'shop-api',
     dbConnectionOptions: {
         type: '{{ dbType }}',
         {{#if requiresConnection}}

+ 1 - 1
server/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@vendure/core",
-  "version": "0.1.0-alpha.6",
+  "version": "0.1.0-alpha.7",
   "description": "A modern, headless ecommerce framework",
   "repository": {
     "type": "git",