File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+
3+ sphinx :
4+ configuration : docs/conf.py
5+
6+ python :
7+ install :
8+ - requirements : docs/requirements.txt
9+
Original file line number Diff line number Diff line change 44author = 'N3XT0R'
55release = '8.0.0'
66
7+ version = release
8+
79extensions = [
810 'myst_parser' ,
911]
1517master_doc = 'index'
1618exclude_patterns = []
1719html_theme = 'furo'
20+
21+ import os
22+ if os .environ .get ('READTHEDOCS' ) == 'True' :
23+ github_user = 'N3XT0R'
24+ github_repo = 'laravel-migration-generator'
25+ github_version = 'master'
26+
27+ html_context = {
28+ 'display_github' : True ,
29+ 'github_user' : github_user ,
30+ 'github_repo' : github_repo ,
31+ 'github_version' : github_version ,
32+ 'conf_py_path' : '/docs/' ,
33+ }
Original file line number Diff line number Diff line change 1+ sphinx
2+ myst-parser
3+ furo
You can’t perform that action at this time.
0 commit comments