15 lines
324 B
Python
15 lines
324 B
Python
import sys
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AppBeConfig(AppConfig):
|
|
name = 'app_be'
|
|
|
|
def ready(self):
|
|
|
|
if 'runserver' in sys.argv:
|
|
from app_be.views.twitter_bot import twitter_bot
|
|
twitter_bot1 = twitter_bot()
|
|
twitter_bot1.start()
|
|
print("bot started") |