File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ Shortish is a URL shortening webapp which is used to shorten any URL. Shortish a
26
26
For windows users:
27
27
28
28
.\Scripts\activate
29
+
30
+ For Linux users:
31
+
32
+ source activate <environment-name>
29
33
```
30
34
31
35
5 . Now, install python dependencies.
@@ -41,4 +45,4 @@ Shortish is a URL shortening webapp which is used to shorten any URL. Shortish a
41
45
python manage.py migrate
42
46
python manage.py runserver
43
47
```
44
- 8 . That's it, Shortish is ready. You can run it at [ http://127.0.0.1:8000/ ] ( http://127.0.0.1:8000/ ) .
48
+ 8 . Shortish is ready for use . You can run it at [ http://127.0.0.1:8000/ ] ( http://127.0.0.1:8000/ ) .
Original file line number Diff line number Diff line change 7
7
try :
8
8
from django .core .management import execute_from_command_line
9
9
except ImportError :
10
- # The above import may fail for some other reason. Ensure that the
11
- # issue is really that Django is missing to avoid masking other
10
+ # The above import may fail for some other reason.
11
+ # Ensure that the issue is really that Django is missing to avoid masking other
12
12
# exceptions on Python 2.
13
13
try :
14
14
import django
Original file line number Diff line number Diff line change 1
1
from django .apps import AppConfig
2
2
3
+ # used to run app
3
4
4
5
class ShortishConfig (AppConfig ):
5
6
name = 'shortish'
You can’t perform that action at this time.
0 commit comments