Andreas Bernhard

Results 14 comments of Andreas Bernhard

Here is a little listing of different options to solve the "confusing path names" problem: https://gist.github.com/branneman/8048520 It concludes with using [module-alias](https://www.npmjs.com/package/module-alias) - which also has a much better track record...

And then I have to append that even that is now discouraged and the use of nodejs' native [import-mapping](https://nodejs.org/api/packages.html#packages_imports) (since v14.6.0, v12.19.0) is to be used instead (via https://github.com/ilearnio/module-alias/issues/113 )...

@BenceSzalai thanks for the work. Unfortunate that you were not able to finalize it. Is there someone in particular to get in contact with in order to determine if finalizing...

Depening if you are using MongoDB or Lite there are limitations to the "unique ID" creation. **For MongoDB:** If you generate > 16million items within 1 second ( https://betterprogramming.pub/is-the-id-property-in-mongodb-100-unique-f1eaa19522ba#dd87 )...

Cockpit uses [`password_hash($string, $algorithm)`](https://www.php.net/manual/en/function.password-hash.php) to save any values in a password field as a hash and later you can use [`password_verify($string, $savedHash)`](https://www.php.net/manual/en/function.password-verify.php) in order to verify, that a specific value...

Old thread, still the same issues. Heroku places the app in a directory that reads to CP as "document_root" `/app` and I guess this somehow messes with the path resolution...

Remark: When deploying CP not in root but in a directory e.g. "/cp" and then setting this directory as document root via the `Procfile` the issue with the wrong referenced...

Both issues might be related to https://github.com/agentejo/cockpit/issues/1464

> Uhmm.., found out that you can use `{{ $trigger }}` and `{{ $last }}` in the `Run Script`. You can just add it to a variable.. and skip using...

@allan-simon are you still on it? I stumbled today over this project and had instantly the same complain as you did ... 3 years ago :laughing: so here I am,...