Django¶
backup_local_db(context, file='')
¶
Back up local db.
Source code in saritasa_invocations/django.py
346 347 348 349 350 351 352 353 354 355 356 | |
backup_remote_db(context, file='')
¶
Make dump of remote db and download it.
Source code in saritasa_invocations/django.py
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | |
check_new_migrations(context)
¶
Check if there is new migrations or not.
Source code in saritasa_invocations/django.py
87 88 89 90 91 92 93 94 | |
createsuperuser(context, email='', username='', password='')
¶
Create superuser.
Source code in saritasa_invocations/django.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | |
dbshell(context)
¶
Open database shell with credentials from either local or dev env.
Source code in saritasa_invocations/django.py
262 263 264 265 266 | |
load_db_dump(context, file='')
¶
Reset db and load db dump.
Source code in saritasa_invocations/django.py
335 336 337 338 339 340 341 342 343 | |
load_django_db_settings(context)
¶
Get database-related config from django settings.
Source code in saritasa_invocations/django.py
397 398 399 400 401 402 403 404 405 406 407 | |
load_django_remote_env_db_settings(context)
¶
Load remote django settings from .env file.
Support two sources:
- single env variable from config.django.remote_db_url_config_name
- multiple env vars from config.django.remote_db_config_mapping
Requires python-decouple
Source code in saritasa_invocations/django.py
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 | |
load_django_settings(context)
¶
Load django settings from settings file (DJANGO_SETTINGS_MODULE).
Source code in saritasa_invocations/django.py
387 388 389 390 391 392 393 394 | |
load_remote_db(context, file='')
¶
Make dump of remote db, download it and apply it.
Source code in saritasa_invocations/django.py
377 378 379 380 381 382 383 384 | |
makemigrations(context)
¶
Run makemigrations command and chown created migrations.
Source code in saritasa_invocations/django.py
78 79 80 81 82 83 84 | |
manage(context, command, docker_params='', watchers=(), **kwargs)
¶
Run manage.py command.
This command also handle starting of required services and waiting DB to be ready.
context: Invoke context
command: Manage command
docker_params: Params for docker run
watchers: Automated responders to command
kwargs: additional arguments for python.run
Source code in saritasa_invocations/django.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
migrate(context)
¶
Run migrate command.
Source code in saritasa_invocations/django.py
119 120 121 122 123 124 | |
recompile_messages(context)
¶
Generate and recompile translation messages.
https://docs.djangoproject.com/en/4.2/ref/django-admin/#makemessages
Source code in saritasa_invocations/django.py
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | |
resetdb(context, apply_migrations=True)
¶
Reset database to initial state (including test DB).
Requires django-extensions
https://django-extensions.readthedocs.io/en/latest/installation_instructions.html
Source code in saritasa_invocations/django.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
run(context)
¶
Run development web-server.
Source code in saritasa_invocations/django.py
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | |
set_default_site(context)
¶
Set default site to localhost.
Set default site domain to localhost:8000 so get_absolute_url works
correctly in local environment
Source code in saritasa_invocations/django.py
320 321 322 323 324 325 326 327 328 329 330 331 332 | |
shell(context, params='')
¶
Shortcut for manage.py shell command.
Requires django-extensions
https://django-extensions.readthedocs.io/en/latest/installation_instructions.html
Additional params available here
https://django-extensions.readthedocs.io/en/latest/shell_plus.html
Source code in saritasa_invocations/django.py
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | |
show_urls(context, search='')
¶
Show urls of project.
Use search param to filter urls by regex.
Not using grep to make cross-platform and also keep color output.
Source code in saritasa_invocations/django.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | |
startapp(context)
¶
Create new django app using copier.
Source code in saritasa_invocations/django.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | |
wait_for_database(context)
¶
Ensure that database is up and ready to accept connections.
Function called just once during subsequent calls of management commands.
Requires django_probes
https://github.com/painless-software/django-probes#basic-usage
Source code in saritasa_invocations/django.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | |