Skip to content

Codeanywhere-Templates/django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Open in Codeanywhere

This is a template project for Django web applications in Codeanywhere. Try it out

Getting Started

When you first open this template, you can run your Django development server with:

cd test_project
python manage.py runserver 0.0.0.0:8000

Open http://localhost:8000 with your browser to see the result.

Features

  • Development container for Django web applications
  • Pre-installed Django and essential packages
  • PostgreSQL client for database connectivity
  • Code formatting and linting tools (Black, Flake8, Pylint)
  • VS Code extensions for Django development
  • Fast development-to-preview workflow

Project Structure

This template project has the following structure:

test_project/
├── core/                  # A basic Django app
│   ├── migrations/        # Database migrations
│   ├── __init__.py
│   ├── admin.py
│   ├── apps.py
│   ├── models.py
│   ├── tests.py
│   ├── urls.py            # URL routing for the app
│   └── views.py           # View functions/classes
├── test_project/          # Project settings
│   ├── __init__.py
│   ├── asgi.py
│   ├── settings.py        # Project configuration
│   ├── urls.py            # Main URL routing
│   └── wsgi.py
├── db.sqlite3             # SQLite database
├── manage.py              # Django management script
└── README.md              # Project README

Learn More

To learn more about Django, take a look at the following resources:

Want to contribute?

Feel free to open a PR with any suggestions for this template project 😃

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published