mirror of
https://github.com/jazzband/django-axes.git
synced 2026-04-25 01:04:46 +00:00
add a manage.py to make making migrations easier
This commit is contained in:
parent
7943def4e5
commit
8da725bd18
1 changed files with 10 additions and 0 deletions
10
manage.py
Normal file
10
manage.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
import os
|
||||
import sys
|
||||
|
||||
if __name__ == "__main__":
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "axes.test_settings")
|
||||
|
||||
from django.core.management import execute_from_command_line
|
||||
|
||||
execute_from_command_line(sys.argv)
|
||||
Loading…
Reference in a new issue