Initial import

This commit is contained in:
Thomas Sileo
2018-05-18 20:41:41 +02:00
commit 43e113e420
50 changed files with 4378 additions and 0 deletions

5
Makefile Normal file
View File

@@ -0,0 +1,5 @@
css:
python -c "import sass; sass.compile(dirname=('sass', 'static/css'), output_style='compressed')"
password:
python -c "import bcrypt; from getpass import getpass; print(bcrypt.hashpw(getpass().encode('utf-8'), bcrypt.gensalt()).decode('utf-8'))"