nineskeletor/src/nineskeletor-1.0/scripts/genkey.sh

13 lines
254 B
Bash
Raw Normal View History

2020-07-01 13:32:02 +02:00
#!/bin/bash
# Se positionner sur la racine du projet
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ${DIR}
cd ..
DIR=$(pwd)
# Génération d'une clé d'API
if [ ! -f $DIR/.key ]; then
openssl rand -hex 32 > $DIR/.key
fi