mirror of
https://github.com/YunoHost-Apps/django_example_ynh.git
synced 2024-09-03 18:26:21 +02:00
31 lines
617 B
Python
31 lines
617 B
Python
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Start django_ynh in YunoHost setup locally.
|
|
|
|
Run via:
|
|
make local-test
|
|
|
|
see README for details ;)
|
|
"""
|
|
from pathlib import Path
|
|
|
|
|
|
try:
|
|
from django_ynh.local_test import create_local_test
|
|
except ImportError as err:
|
|
raise ImportError('Did you forget to activate a virtual environment?') from err
|
|
|
|
BASE_PATH = Path(__file__).parent
|
|
|
|
|
|
def main():
|
|
create_local_test(
|
|
django_settings_path=BASE_PATH / 'conf' / 'django_ynh_demo_settings.py',
|
|
destination=BASE_PATH / 'local_test',
|
|
runserver=True,
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|