Unable to get Django up and running
Abierto
Nadie ha tomado este issue todavía.
Needs Triage
- Lenguaje dominante
- JavaScript
- Estrellas
- 3
- Forks
- 1
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
---
name: django-play
services:
appserver:
type: python:3.11
build:
- pip install --upgrade pip
- pip install -r requirements.txt
scanner: true
# NOTE: this entire Landofile hard codes a path to a project we assume exists. If you have a different
# name for your project, you'll have to change all occurences of 'firstapp' to whatever your project is named.
command: python /app/airlineclub/manage.py runserver 0:8800
overrides:
ports:
- "8000:8000"
environment:
# NOTE: change this path to match your project name
PYTHONPATH: "/app/airlineclub"
DJANGO_SETTINGS_MODULE: "firstapp.settings"
moreHttpPorts:
- "8000"
db:
# NOTE: the credentials below are the default for Lando, don't bother trying to change them
type: postgres:15
portforward: true
creds:
user: postgres
password:
database: django-play
tooling:
django-admin:
service: appserver
cmd: django-admin
python:
service: appserver
cmd: python
pip:
service: appserver
cmd: pip
manage:
service: appserver
# NOTE: change this path to match your project name
cmd: cd /app/airlineclub && python /app/airlineclub/manage.py
psql:
service: db
cmd: psql -U postgres
"db-import <file>":
service: :host
description: Imports a dump file into a database service
cmd: /helpers/sql-import.sh
options:
host:
description: The database service to use
default: db
alias:
- h
no-wipe:
description: Do not destroy the existing database before an import
boolean: true
results in:
appserver_1 | 2023-10-14T08:28:05.489931858Z lando 08:28:05.48 INFO ==> Lando handing off to: /bin/sh -c python /app/airlineclub/manage.py runserver 0:8800
appserver_1 | 2023-10-14T08:28:05.508377347Z Traceback (most recent call last):
appserver_1 | 2023-10-14T08:28:05.508414138Z File "/app/airlineclub/manage.py", line 10, in main
appserver_1 | 2023-10-14T08:28:05.508421998Z from django.core.management import execute_from_command_line
appserver_1 | 2023-10-14T08:28:05.508428058Z ModuleNotFoundError: No module named 'django'
appserver_1 | 2023-10-14T08:28:05.508433998Z
appserver_1 | 2023-10-14T08:28:05.508440028Z The above exception was the direct cause of the following exception:
appserver_1 | 2023-10-14T08:28:05.508445958Z
appserver_1 | 2023-10-14T08:28:05.508451679Z Traceback (most recent call last):
appserver_1 | 2023-10-14T08:28:05.508461699Z File "/app/airlineclub/manage.py", line 21, in <module>
appserver_1 | 2023-10-14T08:28:05.508468019Z main()
appserver_1 | 2023-10-14T08:28:05.508473529Z File "/app/airlineclub/manage.py", line 12, in main
appserver_1 | 2023-10-14T08:28:05.508495950Z raise ImportError(
appserver_1 | 2023-10-14T08:28:05.508502380Z ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment?
It appears that the build command isn't running before the command. What am I missing?
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Empieza por Landofile, requirements.txt y /app/airlineclub/manage.py, luego reproduce el inicio de appserver mostrado e inspecciona si los pasos de build se ejecutan antes del comando. Se considera terminado cuando el servicio configurado puede importar Django e iniciar manage.py runserver sin el ModuleNotFoundError indicado.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- django, postgresql, python
- Área
- backend, databases, devops
- Tipo de issue
- Error
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100