-
Notifications
You must be signed in to change notification settings - Fork 8
/
README
54 lines (38 loc) · 1.49 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
====================
= Password Manager =
====================
Password manager aims to be a simple but efective password database, but not
a sharing password application, only for a reduced number of sysadmin or developers.
My work as sysadmin, require to save a lot of passwords for installed applications
from 100 to more of 1000.
FEATURES:
* Search for metadata
* Passwords are only visible by clicking on the password field, otherwise it is hidden from prying eyes
* passwords are encripted on the database based on django.core.signing
* filters on right size django bar, date, uploader and TOP LOGINS with facets for logins with at least 3 logins
TODO:
* send emails with new window and a django template
* change passwords textbox to password box
* migration to django 1.6
REQUIREMENTS:
* Django 1.5
* you have a requirements.txt file to use with python pip
pip install -r requirements.txt
#######
INSTALL
#######
CREATE A MYSQL DATABASE
mysql> create database passmanager;
mysql> grant all privileges on passmanager.* to passmanager@localhost identified by 'passmanager';
cd PasswordManager
./manage.py syncdb
STATIC FILES
for production enviroments with apache or nginx webserver remember collectstatics
~/PasswordManager$ ./manage.py collectstatic
Now run the app with the server from django
/manage.py runserver
Validating models...
0 errors found
Django version 1.4, using settings 'settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.