JSPM

strapi-plugin-init-admin-user

0.2.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 837
  • Score
    100M100P100Q111885F
  • License MIT

Creates a strapi admin user on startup. Simplifies working with multiple strapi environments.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (strapi-plugin-init-admin-user) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    strapi-plugin-init-admin-user

    Creates a strapi admin user on startup. Simplifies working with multiple strapi environments.

    Init Admin Example Variables

    Latest Changes

    November/19/2023: Updated & tested for strapi (v.4.15.5``). Added support for NodeJs 20.x.x`.

    September/02/2023: Tested for Strapi (v.4.13.1).

    February/10/2023: Small adjustments in case INIT_ADMIN is not a string.

    January/11/2023: Updated & tested for strapi (v.4.5.5). Added support for NodeJs 18.x.x.

    December/11/2022: Allow INIT_ADMIN to be a JSON-String to minimize struggling with multiple environment variables.


    Installation

    Add strapi-plugin-init-admin-user to your strapi (v4!).

    # npm:
    npm install strapi-plugin-init-admin-user
    # yarn:
    yarn add strapi-plugin-init-admin-user

    Create these environment variables with your initial values.

    INIT_ADMIN_USERNAME=admin
    INIT_ADMIN_PASSWORD=admin
    INIT_ADMIN_FIRSTNAME=Admin
    INIT_ADMIN_LASTNAME=Admin
    INIT_ADMIN_EMAIL=admin@init-strapi-admin.strapi.io

    It is also possible to use INIT_ADMIN as JSON-String instead of the environment variables above.

    INIT_ADMIN='{"username": "admin", "password": "admin", "firstname": "Admin", "lastname": "Admin", "email": "admin@init-strapi-admin.strapi.io"}'

    If you decide to also use this plugin outside of development-mode you also need to add the following environment variable (or use INIT_ADMIN as JSON-String).

    INIT_ADMIN=true

    Usage

    After installing the plugin and creating your environment variables start your strapi (locally: npm run develop) and watch out for the info-log:

    Created admin (E-Mail: admin@init-strapi-admin.strapi.io, Password: [INIT_ADMIN_PASSWORD]).

    Note: By default the plugin will only create an initial admin-user if there is no existing user in your strapi application!

    Success Notification after Admin Creation on Startup Init Admin Result in Strapi

    Support

    Leave a 'Thank You' with a ⭐️ on Github and have a nice day!


    Plugin on Github
    Plugin on NPM
    Plugin on Strapi Marketplace


    License

    MIT License - Created by minzig🍃