Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mathesar | 1,450 | 10 hours ago | 335 | gpl-3.0 | Python | |||||
Web application providing an intuitive user experience to databases. | ||||||||||
Endoflife.date | 1,391 | 12 hours ago | 130 | mit | Ruby | |||||
Informative site with EoL dates of everything | ||||||||||
Django Tenant Schemas | 1,295 | 36 | 3 | a year ago | 52 | November 10, 2021 | 164 | mit | Python | |
Tenant support for Django using PostgreSQL schemas. | ||||||||||
Docker Tutorial | 1,224 | 4 months ago | 6 | mit | Python | |||||
Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝 | ||||||||||
Django Tenants | 1,067 | 16 | 6 | 2 days ago | 43 | January 19, 2022 | 174 | mit | Python | |
Django tenants using PostgreSQL Schemas | ||||||||||
Django Cachalot | 1,008 | 82 | 1 | 12 days ago | 39 | February 25, 2022 | 23 | bsd-3-clause | Python | |
No effort, no worry, maximum performance. | ||||||||||
Docker Django Example | 914 | 16 days ago | 4 | mit | Shell | |||||
A production ready example Django app that's using Docker and Docker Compose. | ||||||||||
Django On Docker | 829 | 7 months ago | 6 | mit | Python | |||||
Dockerizing Django with Postgres, Gunicorn, and Nginx | ||||||||||
Python Engineer Roadmap | 773 | a month ago | 13 | apache-2.0 | ||||||
Python Engineer Roadmap | ||||||||||
Moviegeek | 730 | a year ago | 11 | mit | Python | |||||
A django website used in the book Practical Recommender Systems to illustrate how recommender algorithms can be implemented. |
Generic project directory structure for new django applications.
For more info, read my blog post:
https://medium.com/cs-math/f29f6080c131
If you want to use Heroku to host your Django application, checkout this project
josephmisiti/generic-django-project-heroku
Just follow directions and you should have a django app running on Heroku in a few steps!
First, get cookiecutter
$ pip install cookiecutter
Then execute the following command:
$ cookiecutter https://github.com/josephmisiti/generic-django-project.git
I like to use postgres, so I suggest installing PostGreApp. Once that is installed, execute the following commands
$ createdb <DBNAME>
Then sync and execute migrations
$ python manage.py syncdb
$ python manage.py migrate
Done! If you are not using OSX, you're on your own. It's pretty easy to install Postgres on UBUNTU (see fabfile.py), but I have no experience on Windows.
If you have any questions or what to help out, send a pull request or reach out at @josephmisiti