Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome Cheatsheets | 33,674 | 3 days ago | 83 | mit | JavaScript | |||||
👩💻👨💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. | ||||||||||
Cookiecutter Django | 10,556 | 1 | 19 hours ago | 5 | January 15, 2018 | 106 | bsd-3-clause | Python | ||
Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly. | ||||||||||
Plane | 7,654 | 12 hours ago | 74 | apache-2.0 | TypeScript | |||||
🔥 🔥 🔥 Open Source JIRA, Linear and Height Alternative. Plane helps you track your issues, epics, and product roadmaps in the simplest way possible. | ||||||||||
Recipes | 4,071 | a day ago | 277 | other | HTML | |||||
Application for managing recipes, planning meals, building shopping lists and much much more! | ||||||||||
Linkding | 3,466 | 3 days ago | 71 | mit | Python | |||||
Self-hosted bookmark manager that is designed be to be minimal, fast, and easy to set up using Docker. | ||||||||||
Viper | 3,043 | 8 days ago | 5 | bsd-3-clause | ||||||
Redteam operation platform with webui 图形化红队行动辅助平台 | ||||||||||
Gerapy | 2,987 | 8 | 21 hours ago | 47 | December 30, 2021 | 58 | mit | Python | ||
Distributed Crawler Management Framework Based on Scrapy, Scrapyd, Django and Vue.js | ||||||||||
Ownphotos | 2,687 | 6 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,417 | a day ago | 41 | apache-2.0 | Python | |||||
Modern, privacy-friendly, and detailed web analytics that works without cookies or JS. |
系统:Mac
软件:Python3.6,Django1.11.3,MySQL5.7
注意:此项目尚未开发完整,尚不能部署线上使用,仅供学习,弱要看效果修改setting文件改成debug模式直接run起来就行,忽略下面的ngx配置(高手可无视)
docker容器镜像部署: 请查看docker_deploy.md 文档发说明
useradd opman
character-set-server = utf8
character-set-client-handshake = FALSE
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER
GRANT ALL PRIVILEGES ON devop.* TO [email protected]'%' IDENTIFIED BY '[email protected]***';
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'devop', 'USER': 'dbuser_op', 'PASSWORD': '[email protected]***', 'HOST': 'localhost', 'PORT': '', } }
https://niubilety.com/redis%E5%85%A5%E9%97%A8%E4%B8%80/
yum install sshpass -y
cd /data/webroot
git clone https://github.com/hgz6536/opman-django.git
cd opman-django && pip3 install -r requirements.txt
python manage.py makemigrations opman
python manage.py migrate
python manage.py createsuperuser
python manage.py loaddata initdb/opman.json
/usr/bin/python manage.py celery worker --loglevel=info -E -c 2 &
pip3 install uwsgi
upstream opman {
server 127.0.0.1:8000;
}
server {
listen 80;
server_name opman.niubilety.com
charset utf-8;
gzip on;
gzip_min_length 1000;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 3;
gzip_vary on;
client_max_body_size 8M;
#access_log /data/logs/nginx/opman_access.log;
#error_log /data/logs/nginx/opman_error.log;
location /medis {
alias /data/webroot/opman-django/media;
}
location /static {
alias /data/webroot/opman-django/static;
}
location / {
uwsgi_pass opman;
include /etc/nginx/uwsgi_params;
}
}
uwsgi --ini /data/webroot/opman-django/uwsgi.ini
uwsgi --reload /tmp/opman.pid
/etc/init.d/nginx start
** 要注意的 如果前端的图标访问不了,只需要在nginx配置 /static/ 路径中加入如下参数
add_header Access-Control-Allow-Origin opman.itcp.cc;
add_header Access-Control-Allow-Credentials 'true';
add_header Access-Control-Allow-Headers X-Requested-With;
add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
580838402