Integrate Spirit user profile to your existing project.
Project description
# Spirit-User-Profile
Integrates Spirit user profile to your existing Django user model.
## What this does?
This will insert some fields in your existing User Table that Spirit requires to work properly.
## How?
I followed this [guide](http://django-authtools.readthedocs.org/en/latest/how-to/migrate-to-a-custom-user-model.html). If you don’t want to have yet another installed app (this one), you can follow that guide yourself. Since I created all the migrations for you, you just need to run some commands and you are done.
## Why?
The old way of joining with a profile table is going away in Django 1.7. This is not true, actually, the old get_profile() is going away. This is for a good reason, let’s say you have 4 third-party apps, all using profiles, it would require 4 extra joins to get all the user data.
Would not be easier/better to have all the fields in the same table?
## Dependencies
Spirit>=0.1.3
South
## Installing
Add spirit_user_profile to your INSTALLED_APPS
Add south to your INSTALLED_APPS
Add AUTH_USER_MODEL = ‘spirit_user_profile.User’ to your settings.py
Run:
python manage.py migrate –fake spirit_user_profile 0001 python manage.py schemamigration –auto spirit_user_profile python manage.py migrate spirit_user_profile
Follow the Spirit installation [guide](https://github.com/nitely/Spirit#installing-advanced).
## Copyright / License
Copyright 2014 [Esteban Castro Borsani](https://github.com/nitely).
Licensed under the [MIT License](https://github.com/nitely/Spirit/blob/master/LICENSE).
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
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-spirit-user-profile-0.1.1.tar.gz
.
File metadata
- Download URL: django-spirit-user-profile-0.1.1.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a37f5a24adc53ab9c42fb5dc39441daf2e37532995380da03e4059cb9b35281c |
|
MD5 | 1138e3fb0fb0fb119f2c0c67a4c675ab |
|
BLAKE2b-256 | 3b441e9227eb33d1fa8cbbd5ced5eaef0737746f68b0cf507f2e800b97476a5b |