forked from github/plane
cf306ee605
* feat: user display name for the entire system * feat: update issue activity to remove emails * dev: update to display name wherever assignees__email and member__email * dev: update display names on issue activity and the user script * dev: update display_name function to generate display_name from email * dev: add email for test purpose * dev: set default display name for the user * dev: add migration script and default value * dev: annotate with assignees_id * dev: return assignees id * dev: display name for the profile * dev: project members endpoint * dev: url update * dev: trailing / * dev: update workspace member serializer * fix: activity for assignees
29 lines
778 B
Python
29 lines
778 B
Python
import os, sys, random, string
|
|
import uuid
|
|
|
|
sys.path.append("/code")
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "plane.settings.production")
|
|
import django
|
|
|
|
django.setup()
|
|
|
|
from plane.db.models import User
|
|
|
|
|
|
def populate():
|
|
default_email = os.environ.get("DEFAULT_EMAIL", "captain@plane.so")
|
|
default_password = os.environ.get("DEFAULT_PASSWORD", "password123")
|
|
|
|
if not User.objects.filter(email=default_email).exists():
|
|
user = User.objects.create(email=default_email, username=uuid.uuid4().hex)
|
|
user.set_password(default_password)
|
|
user.save()
|
|
print(f"User created with an email: {default_email}")
|
|
else:
|
|
print(f"User already exists with the default email: {default_email}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
populate()
|