diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d0dea72c1f19e1f813c717860d4f384dd5dcdd9a..832805033a0f2dbf067df1318969082f6d77f103 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -28,7 +28,7 @@ VUE_APP_COUCH_PASS=yourpassword
 
 Please note we use [PouchDB](https://pouchdb.com/) to talk to CouchDB. This is what enables offline and local first support.
 
-All the internal code should use the GNU Affero General Public [License](LICENSE.md).Any dependancies that are brought into nodenogg.in must have as open a License as possible. Dependancies should be loaded in via Vue.js ui cli.
+All the internal code should use the GNU Affero General Public [License](LICENSE).Any dependancies that are brought into nodenogg.in must have as open a License as possible. Dependancies should be loaded in via Vue.js ui cli.
 
 Please Use arrow functions,and as much ES6 as possible. The code should be as neat as possible. However all code should be human understandable. So again verbose is good.
 
diff --git a/README.md b/README.md
index f155f1681aebb5327edec5a5b9fed130b52ced51..fa6712c8dad8a89944f98ed41f0df26a6305bcc5 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ nodenogg.in is free open source software, built in the open, inclusive by design
 
 # Overarching Guide for Contributions
 
-Contributions to nodenogg.in must abide by the [Delightful Design Manifesto](MANIFESTO.md). More detail on Contributing can be read [here](CONTRIIBUTING.md).
+Contributions to nodenogg.in must abide by the [Delightful Design Manifesto](MANIFESTO.md). More detail on Contributing can be read [here](CONTRIBUTING.md).
 
 # Keeping up with nodenogg.in
 
diff --git a/app/README.md b/app/README.md
deleted file mode 100644
index dbd8bbe2fbaba097130b62ee7d7ffbddeadc1463..0000000000000000000000000000000000000000
--- a/app/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# canvas-10-feb
-
-## Project setup
-```
-yarn install
-```
-
-### Compiles and hot-reloads for development
-```
-yarn serve
-```
-
-### Compiles and minifies for production
-```
-yarn build
-```
-
-### Lints and fixes files
-```
-yarn lint
-```
-
-### Customize configuration
-See [Configuration Reference](https://cli.vuejs.org/config/).
diff --git a/app/src/store/index.js b/app/src/store/index.js
index f2994af683c461ccabcfcadc3c60bf722dbc5358..62d9141a0b3c384925a3ec5911188d6b19626f49 100644
--- a/app/src/store/index.js
+++ b/app/src/store/index.js
@@ -33,6 +33,7 @@ var remote =
 
 const store = new Vuex.Store({
   state: {
+    version: process.env.VUE_APP_VERSION,
     localnodeid: '',
     global_pos_name: 'positions',
     global_con_name: 'connections',
@@ -91,6 +92,7 @@ const store = new Vuex.Store({
     },
 
     GET_ALL_NODES(state) {
+      console.log(state.deploydate)
       pouchdb
         .allDocs({
           include_docs: true,
diff --git a/app/src/views/About.vue b/app/src/views/About.vue
index 2e0935632dab49aa8be6f18f4a8f0291a70577f0..988a85cf727a5a73897f66c3fd6bb6f247a1069d 100644
--- a/app/src/views/About.vue
+++ b/app/src/views/About.vue
@@ -14,7 +14,8 @@
       <em>(+ helpers &amp; supporters)</em>
     </p>
 
-    <h3>version 0.1.0</h3>
+    <h3>version {{ myVersion }}</h3>
+
     <ul>
       <li>
         Co-create and contribute ideas, with text, links and attachments with
@@ -88,3 +89,17 @@
     </ul>
   </div>
 </template>
+<script>
+import { mapState } from 'vuex'
+
+export default {
+  name: 'About',
+
+  data: function() {
+    return {}
+  },
+  computed: mapState({
+    myVersion: state => state.version
+  })
+}
+</script>
diff --git a/app/vue.config.js b/app/vue.config.js
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..fe3a2ba085810cd159ca8b66c7f1bdc4335c7da9 100644
--- a/app/vue.config.js
+++ b/app/vue.config.js
@@ -0,0 +1 @@
+process.env.VUE_APP_VERSION = require('./package.json').version
\ No newline at end of file