# django_bootstrap_table **Repository Path**: netbuffer/django_bootstrap_table ## Basic Information - **Project Name**: django_bootstrap_table - **Description**: python web开发框架django+bootstrap-table表格插件整合测试 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2018-02-05 - **Last Updated**: 2024-01-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # django_bootstrap_table * http://github.com/netbuffer/django_bootstrap_table * http://gitee.com/netbuffer/django_bootstrap_table ``` 安装django:`pip install Django` 进入工程根目录执行:`python manage.py startapp django_bootstrap_table_web`来创建应用 执行`python manage.py runserver 8080` 启动server 查看django版本:`python -m django --version` 安装mysql库支持`pip install mysqlclient` 创建基础表:`python manage.py migrate` 创建应用表结构:`python manage.py makemigrations django_bootstrap_table_web` 执行生成表结构:`python manage.py migrate django_bootstrap_table_web` 更新表结构:`python manage.py makemigrations` 执行更新表:`python manage.py migrate` 创建用户`python manage.py createsuperuser` 进入命令行交互:`python manage.py shell` 运行测试用例:`python manage.py test django_bootstrap_table` pip install -r requirements.txt ```