AUTH_USER_MODEL refers to model 'restro_app.CustomUser' that has not been installed

2020-03-26 Thread Kushal Neupane
D:\Development\Backup\2\restroapp>python manage.py runserver
Watching for file changes with StatReloader
Exception in thread django-main-thread:
Traceback (most recent call last):
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\apps\registry.py", line 155, in 
get_app_config
return self.app_configs[app_label]
KeyError: 'restro_app'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\contrib\auth\__init__.py", line 
156, in get_user_model
return django_apps.get_model(settings.AUTH_USER_MODEL, 
require_ready=False)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\apps\registry.py", line 205, in 
get_model
app_config = self.get_app_config(app_label)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\apps\registry.py", line 162, in 
get_app_config
raise LookupError(message)
LookupError: No installed app with label 'restro_app'.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Program Files (x86)\Python36-32\lib\threading.py", line 916, in 
_bootstrap_inner
self.run()
  File "C:\Program Files (x86)\Python36-32\lib\threading.py", line 864, in 
run
self._target(*self._args, **self._kwargs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\utils\autoreload.py", line 53, 
in wrapper
fn(*args, **kwargs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\commands\runserver.py",
 
line 109, in inner_run
autoreload.raise_last_exception()
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\utils\autoreload.py", line 76, 
in raise_last_exception
raise _exception[1]
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\__init__.py", 
line 357, in execute
autoreload.check_errors(django.setup)()
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\utils\autoreload.py", line 53, 
in wrapper
fn(*args, **kwargs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\apps\registry.py", line 122, in 
populate
app_config.ready()
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\contrib\admin\apps.py", line 24, 
in ready
self.module.autodiscover()
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\contrib\admin\__init__.py", line 
26, in autodiscover
autodiscover_modules('admin', register_to=site)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\utils\module_loading.py", line 
47, in autodiscover_modules
import_module('%s.%s' % (app_config.name, module_to_search))
  File "C:\Program Files (x86)\Python36-32\lib\importlib\__init__.py", line 
126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 994, in _gcd_import
  File "", line 971, in _find_and_load
  File "", line 955, in _find_and_load_unlocked
  File "", line 665, in _load_unlocked
  File "", line 678, in exec_module
  File "", line 219, in 
_call_with_frames_removed
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\contrib\auth\admin.py", line 6, 
in 
from django.contrib.auth.forms import (
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\contrib\auth\forms.py", line 20, 
in 
UserModel = get_user_model()
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\contrib\auth\__init__.py", line 
161, in get_user_model
"AUTH_USER_MODEL refers to model '%s' that has not been installed" % 
settings.AUTH_USER_MODEL
django.core.exceptions.ImproperlyConfigured: AUTH_USER_MODEL refers to 
model 'restro_app.CustomUser' that has not been installed

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/8f58a04b-7cc1-4d81-bcfb-01f0b6f04b52%40googlegroups.com.


Error while creating an API

2020-04-09 Thread Kushal Neupane
Dear all, i got error while making an API. Help me
C:\Users\Kushal Neupane\Desktop\1. Project Folder - [SMART RESTAURANT POINT 
OF SALE] - [KUSHAL NEUPANE]\1. Project Artefact\5. 
Development\restro_app>python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...

Exception in thread django-main-thread:
Traceback (most recent call last):
  File "C:\Program Files (x86)\Python36-32\lib\threading.py", line 916, in 
_bootstrap_inner
self.run()
  File "C:\Program Files (x86)\Python36-32\lib\threading.py", line 864, in 
run
self._target(*self._args, **self._kwargs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\utils\autoreload.py", line 53, 
in wrapper
fn(*args, **kwargs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\commands\runserver.py",
 
line 117, in inner_run
self.check(display_num_errors=True)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\base.py", line 
395, in check
include_deployment_checks=include_deployment_checks,
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\base.py", line 
382, in _run_checks
return checks.run_checks(**kwargs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\checks\registry.py", line 
72, in run_checks
new_errors = check(app_configs=app_configs)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\checks\urls.py", line 13, 
in check_url_config
return check_resolver(resolver)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\checks\urls.py", line 23, 
in check_resolver
return check_method()
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\urls\resolvers.py", line 406, in 
check
for pattern in self.url_patterns:
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\utils\functional.py", line 48, 
in __get__
res = instance.__dict__[self.name] = self.func(instance)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\urls\resolvers.py", line 587, in 
url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", 
self.urlconf_module)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\utils\functional.py", line 48, 
in __get__
res = instance.__dict__[self.name] = self.func(instance)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\urls\resolvers.py", line 580, in 
urlconf_module
return import_module(self.urlconf_name)
  File "C:\Program Files (x86)\Python36-32\lib\importlib\__init__.py", line 
126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 994, in _gcd_import
  File "", line 971, in _find_and_load
  File "", line 955, in _find_and_load_unlocked
  File "", line 665, in _load_unlocked
  File "", line 678, in exec_module
  File "", line 219, in 
_call_with_frames_removed
  File "C:\Users\Kushal Neupane\Desktop\1. Project Folder - [SMART 
RESTAURANT POINT OF SALE] - [KUSHAL NEUPANE]\1. Project Artefact\5. 
Development\restro_app\restro_app\urls.py", line 26, i
n 
path('api/', include('tableOrder.urls')),
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\urls\conf.py", line 34, in 
include
urlconf_module = import_module(urlconf_module)
  File "C:\Program Files (x86)\Python36-32\lib\importlib\__init__.py", line 
126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 994, in _gcd_import
  File "", line 971, in _find_and_load
  File "", line 941, in _find_and_load_unlocked
  File "", line 219, in 
_call_with_frames_removed
  File "", line 994, in _gcd_import
  File "", line 971, in _find_and_load
  File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'tableOrder'

Traceback (most recent call last):
  File "manage.py", line 21, in 
main()
  File "manage.py", line 17, in main
execute_from_command_line(sys.argv)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\__init__.py", 
line 401, in execute_from_command_line
utility.execute()
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\__init__.py", 
line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
  File "C:\Program Files 
(x86)\Python36-32\lib\site-packages\django\core\management\base.py", line 
328, in run_from_argv
self.execute(*args, **cmd_options)
  File "C:\Program Files 
(

Re: DjangoProject

2020-08-11 Thread Kushal Neupane
We can work in a project with few members as a group work.

On Tue, Aug 11, 2020, 22:47 Desh Deepak  wrote:

> Hello everyone, I want to developing a django project. Who wants to
> collaborate to do a project and learn django share your github user id for
> github reposetory access.
>
> Live on Heroku
> http://kidszania.herokuapp.com/
>
>
> Thanks
> Desh Deepak
> +91 7011101001
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/CAJ0m4xi70WZ9ZsL4nBU3HmNU%2BZ8TLgNgL4BwAfS7%3DhxNZ-SxNg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAFWyajWJnv-eV0V%3D2V5b-C7KO3r%3D0Zj%2B3HDEe0NRvEsAi4hp%2Bg%40mail.gmail.com.