1 Star 0 Fork 6

guoqiang5277/ldap-password

forked from Logan.Li/ldap-password 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.sh 850 Bytes
一键复制 编辑 原始数据 按行查看 历史
Logan.Li 提交于 2022-05-14 16:32 . db更新
#!/bin/bash
###
# @Author: 以谁为师
# @Website: attacker.club
# @Date: 2020-08-26 09:17:33
# @LastEditTime: 2020-08-27 15:27:49
# @Description:
###
db_init() {
pip3 install -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com -r requirements.txt
python manage.py makemigrations
python manage.py migrate
# 初始化数据
python utils/init.py
# 第一次初始化密码
}
# shellcheck disable=SC2120
replace_settings() {
if [ $1x == "debug"x ]; then
sed -i 's/DEBUG = False/DEBUG = True/'g website/settings.py
echo -e "Enable Debug ......"
else
sed -i 's/DEBUG = True/DEBUG = False/'g website/settings.py
echo -e "Disable Debug ......"
# 关闭调试模式
fi
}
run_server() {
db_init
replace_settings
python manage.py runserver 0.0.0.0:8000
}
run_server # 启动服务
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/openblog/ldap-password.git
git@gitee.com:openblog/ldap-password.git
openblog
ldap-password
ldap-password
master

搜索帮助