-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
32 lines (25 loc) · 875 Bytes
/
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
Private SaaS is a start point (boilerplate) to build subscription-like service with invite based registration.
Version: 0.0
Not ready for production usage.
Features:
- invite based registration;
- time based subscription with bonus period;
- promocodes, which allow extend subscription;
- ajax based log in, registration and change/reset password;
- very simple feedback system;
- based on lincolnloop' boilerplate (https://github.com/lincolnloop/django-startproject);
TODO:
- module based payment;
- remove unnecessary js/css/images;
- remove django-registration dependency;
- try to split on independent apps;
- clean conf dir;
Dependencies:
- django-registration;
- django-compressor;
Installation:
1) git clone git://github.com/baffolobill/django-private-saas.git
2) cd private_saas
3) bin/manage.py syncdb
4) bin/manage.py runserver
5) go to http://localhost:8000