vjrj

Results 67 comments of vjrj

I played a little bit more with the different docker images and in general I like a lot your proposal @andrevtg how is generalized and can be used by other...

As usual, thanks @ansell

``` TASK [solr7 : Download SOLR 7.7.2] ************************************************************************************************************* fatal: [index-kew.l-a.site]: FAILED! => {"changed": false, "dest": "/tmp/solr-7.7.2.tgz", "elapsed": 0, "msg": "Request failed", "response": "HTTP Error 404: Not Found", "status_code": 404, "url":...

I'm using a inventory similar to `ansible/inventories/living-atlas` so the demo playbook should fail also in this task. As a workaround we can add `namedata_datestamp=20171012`.

About large downloads, we use skip/skip-tags: https://github.com/AtlasOfLivingAustralia/documentation/wiki/FAQ#so-what-happens-when-i-rerun-the-ansible-it-doesnt-like-make-two-versions-of-everything although in the case of the `nameindex`, in a near future will not download again. About repeating/reruning ansible: we use the `--tags`, for...

Hi @santiagomrv Maybe it's just a version issue: https://nexus.ala.org.au/#nexus-search;quick~ala-bootstrap2 I hope it helps, Vicente

Also, other option is to only create `fixtures` when `Meteor.isDevelopment` so you can start a site in production with an empty database and a dev site with some data.

I use: https://www.npmjs.com/package/@cleverbeagle/seeder Quite easy usage: https://cleverbeagle.com/packages/seeder/usage Example in action: https://github.com/cleverbeagle/pup/blob/master/imports/startup/server/fixtures.js

I see that `if (Meteor.user())` is used in server side publications. I use prefer to use `if (this.userId)` instead. Some link: https://stackoverflow.com/questions/16532316/how-to-get-meteor-user-to-return-on-the-server-side sample: https://github.com/comunes/todos-contra-el-fuego-web/blob/1360f742f3ba44c60fe3fa904a6450d57713f291/imports/api/Users/server/publications.js#L18 I think that method `userCount` in...