Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome Cheatsheets | 34,597 | 8 days ago | 88 | mit | JavaScript | |||||
👩💻👨💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. | ||||||||||
Plane | 16,300 | 14 hours ago | 217 | agpl-3.0 | TypeScript | |||||
🔥 🔥 🔥 Open Source JIRA, Linear and Height Alternative. Plane helps you track your issues, epics, and product roadmaps in the simplest way possible. | ||||||||||
Cookiecutter Django | 10,863 | 1 | 15 hours ago | 5 | January 15, 2018 | 95 | bsd-3-clause | Python | ||
Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly. | ||||||||||
Recipes | 4,339 | a day ago | 264 | other | HTML | |||||
Application for managing recipes, planning meals, building shopping lists and much much more! | ||||||||||
Linkding | 3,994 | 10 days ago | 74 | mit | Python | |||||
Self-hosted bookmark manager that is designed be to be minimal, fast, and easy to set up using Docker. | ||||||||||
Viper | 3,281 | a day ago | 3 | bsd-3-clause | ||||||
Redteam operation platform with webui 图形化红队行动辅助平台 | ||||||||||
Gerapy | 3,075 | 8 | 5 days ago | 49 | July 19, 2023 | 60 | mit | Python | ||
Distributed Crawler Management Framework Based on Scrapy, Scrapyd, Django and Vue.js | ||||||||||
Ownphotos | 2,687 | 10 months ago | 90 | mit | Jupyter Notebook | |||||
Self hosted alternative to Google Photos | ||||||||||
Django React Redux Base | 2,619 | 2 years ago | 23 | mit | JavaScript | |||||
Seedstars Labs Base Django React Redux Project | ||||||||||
Shynet | 2,555 | 17 hours ago | 40 | apache-2.0 | Python | |||||
Modern, privacy-friendly, and detailed web analytics that works without cookies or JS. |
Getting a Django 4.2 app up in no time. In this project, gunicorn is used as a WSGI. NGINX is used as a reverse proxy server.
I have seen one too many Dockerfile with unreadable code. Many code base out there have Docker setup so elaborately that it is unmodifiable. Here, I try to simplify Dockerfile and Docker Compose file as much as possible, so that more than one developer in a team will understand how it works.
In the root level of this repository, copy the file named django.env.example
to django.env
and adjust file variables
cp django.env.example django.env
Build code with docker compose
docker-compose build
Run the built container
docker-compose up
Here is a script to install docker and docker-compose. After running these commands, exit from ssh and reconnect to the instance. This can be used in AWS Launch Config
#!/bin/bash
sudo yum -y update
sudo yum install -y docker
sudo usermod -a -G docker $(whoami)
sudo service docker start
sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
For Ubuntu
sudo apt update
sudo apt install -y docker.io
sudo usermod -a -G docker $(whoami)
sudo service docker start
sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose