Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Create new branch initialize. The project access token is not permitted to push to main branch.

    Code Block
    git branch initialize
    git checkout initialize
    git push --set-upstream origin initialize
  • Commit the initial files created by django for the project.

    Code Block
    git add .
    git commit -m "Initialize django project."
    git push
  • Merge the initialize branch into main branch.

Create Dockerfile

Modify ALLOWED_HOSTS.