Skip to content

Commit 0d87798

Browse files
committed
trainer configuration to ENV
1 parent 253ff37 commit 0d87798

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you haven't done it already, checkout the [hands-on Learn Apollo tutorial](ht
1313
```sh
1414
cd playground
1515
yarn install
16-
yarn dev # open localhost:4000
16+
TRAINER_NAME='{your-name}' TRAINER_ID="{your-id}" yarn dev
1717
```
1818

1919
## Workflow

playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A Pokedex App using and teaching Apollo and Vue.js",
44
"private": true,
55
"scripts": {
6-
"dev": "vue build src/index.js"
6+
"dev": "vue build src/index.js --config ./vue.config.js"
77
},
88
"dependencies": {
99
"apollo-client": "^0.5.0",

playground/src/config/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export const trainerName = 'Kristijan Sedlak';
2-
export const trainerId = 'ciyg03gv6kjp30164zo6u8jn2';
1+
export const trainerName = process.env.TRAINER_NAME;
2+
export const trainerId = process.env.TRAINER_ID;

playground/vue.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
const webpack = require('webpack');
2+
3+
module.exports = {
4+
5+
webpack (defaults) {
6+
defaults.plugins.push(
7+
new webpack.DefinePlugin({
8+
'process.env': {
9+
'TRAINER_NAME': JSON.stringify(process.env.TRAINER_NAME),
10+
'TRAINER_ID': JSON.stringify(process.env.TRAINER_ID)
11+
}
12+
})
13+
);
14+
return defaults;
15+
}
16+
17+
};

0 commit comments

Comments
 (0)