UNKNOWN
Project description
# django-brancher This is a Django app to help manage branches that contain database migrations. It basically creates a new database from a template of the existing default database and then uses that new branch-specific database for ./manage.py migrate and ./manage.py runserver commands.
This is not intended for production use.
## Example
- ### Requirements
git
postgres
your postgres user has createdb permission (alter role <user> createdb;)
django-brancher installed via pip
brancher added to your Django installed apps
### Sample workflow This is an example work flow to create a new branch, run migrations on it, start runserver, and finally delete it. ` git checkout -b funtime <code up some migrations and run makemigrations> python manage.py branch_mk python manage.py branch_it migrate python manage.py branch_it runserver python manage.py branch_rm `
## Commands
### Run command Run a command with DATABASES[‘default’][‘NAME’] set to DATABASES[‘default’][‘NAME’]_`$ git rev-prse –abbrev-ref HEAD`
` python manage.py branch_it diffsettings `
### List List all branched databases available ` python manage.py branch_ls `
### Create Makes a database based off the current default database given a unique name based on the default database name plus the branch name (e.g. $ git rev-prse –abbrev-ref HEAD) ` $ python manage.py branch_mk `
### Delete Deletes the branched database based off the result of $ git rev-prse –abbrev-ref HEAD ` $ python manage.py branch_rm `
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-brancher-0.1.tar.gz
.
File metadata
- Download URL: django-brancher-0.1.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3733f863b7ebb35e0a5295d541ae931db046f8131d10628eb4ebad53cfa7d515 |
|
MD5 | 38056a7810e125fc658d16d573955d37 |
|
BLAKE2b-256 | b3caaa4f7661d338e09ff23c476f46e0edd0c47c18668ecbc04b32179da08ee7 |