File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,18 @@ Steps:
12
12
------
13
13
1 . Install all requirements by running ` pip install -r requirements.txt ` in project root
14
14
- To install some python libraries like ` python-ldap ` or ` psycopg2 ` you might need to install some OS based
15
- packages. Please refer to their individual installation guideline on their homepages
15
+ packages. Please refer to their individual installation guideline on their homepages.
16
16
2 . Copy configurable settings file ` sso/settings_user.py.sample ` to ` sso/settings_user.py `
17
17
3 . Edit ` sso/settings_user.py ` and add configurations and credentials
18
18
4 . If you are planning to run in production, you should add database settings in ` sso/settings_user.py `
19
19
5 . Add ` SECRET_KEY ` in ` sso/settings_user.py `
20
20
6 . Run migrations by ` python manage.py migrate `
21
21
7 . Create superuser by running ` python manage.py createsuperuser `
22
22
8 . Run ` python manage.py runserver ` . Open browser at ` http://localhost:8000/ `
23
- 9 . Congrats! Installation is complete!
23
+ 9 . Congrats! Installation is complete!
24
+
25
+ Ubuntu-specific instructions (16.04+):
26
+ --------------------------------------
27
+ 1 . Install python3-pip and necessary LDAP libraries: ` sudo apt-get install python3-pip libsasl2-dev libldap2-dev libssl-dev `
28
+ 2 . Install requirements: ` pip3 install -r requirements/base.txt `
29
+ Proceed as above for the remainder.
You can’t perform that action at this time.
0 commit comments