lando / lando/python

Unable to get Django up and running

オープン
#27 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

Needs Triage
主要言語
JavaScript
スター
3
フォーク
1
PR マージ指標
30日以内にマージされた PR はありません

説明

---
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?

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

調査の方向性

Landofile、requirements.txt、/app/airlineclub/manage.py から始め、次に示されている appserver の起動を再現し、コマンドの前に build 手順が実行されるかを確認します。設定されたサービスが Django を import し、報告された ModuleNotFoundError なしで manage.py runserver を起動できれば完了です。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
django, postgresql, python
領域
backend, databases, devops
issue の種類
バグ
難易度
3/5
見積もり時間
1〜2日
活発さ
停滞
明瞭さ
おおむね明確
初心者へのやさしさ
35/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。