nineskeletor/tmpl/nineskeletor-genkey.sh

10 lines
174 B
Bash
Raw Normal View History

2020-07-02 15:00:08 +02:00
#!/bin/bash
# Se positionner sur la racine du projet
DIR="%%nineskeletor_api_key"
# Génération d'une clé d'API
if [ ! -f $DIR ]; then
openssl rand -hex 32 > $DIR
fi