website: Copy files during build. website: Allow for mixed env builds. website: Reduce build size. website: Expose build. website: Add build memory debugging. WIP: Disable broken links check to compare memory usage. website: Update deps. website: Clean up API paths. website: Flesh out 3.8 fixes. Format. website: Update ignore paths. Website: Clean up integrations build. website: Fix paths. website: Optimize remark. website: Update deps. website: Format. website: Remove linking. website: Fix paths. wip: Attempt API only build. Prep. Migrate render to runtime. Tidy sidebar. Clean up templates. docs: Move directory. WIP docs: Flesh out split. website: Fix issue where routes have collisions.
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
title: Example
 | 
						|
---
 | 
						|
 | 
						|
This is one of the default packaged blueprints to create the default authentication flow.
 | 
						|
 | 
						|
<!-- prettier-ignore-start -->
 | 
						|
```yaml
 | 
						|
version: 1
 | 
						|
metadata:
 | 
						|
    name: Default - Authentication flow
 | 
						|
entries:
 | 
						|
    # Order of entries is important when using !KeyOf, as tags are evaluated in order they are in
 | 
						|
    # the document
 | 
						|
    - attrs:
 | 
						|
          # Only options that are required should be set here. Default values should not be stated
 | 
						|
          # here, as they will prevent anyone from overwriting the value
 | 
						|
          designation: authentication
 | 
						|
          name: Welcome to authentik!
 | 
						|
          title: Welcome to authentik!
 | 
						|
      identifiers:
 | 
						|
          slug: default-authentication-flow
 | 
						|
      model: authentik_flows.flow
 | 
						|
      id: flow
 | 
						|
    - attrs:
 | 
						|
          configure_flow:
 | 
						|
              !Find [authentik_flows.flow, [slug, default-password-change]]
 | 
						|
      identifiers:
 | 
						|
          name: default-authentication-password
 | 
						|
      id: default-authentication-password
 | 
						|
      model: authentik_stages_password.passwordstage
 | 
						|
    - identifiers:
 | 
						|
          name: default-authentication-mfa-validation
 | 
						|
      # If we're fine with all defaults, `attrs` can be omitted
 | 
						|
      id: default-authentication-mfa-validation
 | 
						|
      model: authentik_stages_authenticator_validate.authenticatorvalidatestage
 | 
						|
    - identifiers:
 | 
						|
          name: default-authentication-identification
 | 
						|
      id: default-authentication-identification
 | 
						|
      model: authentik_stages_identification.identificationstage
 | 
						|
    - attrs:
 | 
						|
          session_duration: seconds=0
 | 
						|
      identifiers:
 | 
						|
          name: default-authentication-login
 | 
						|
      id: default-authentication-login
 | 
						|
      model: authentik_stages_user_login.userloginstage
 | 
						|
    - identifiers:
 | 
						|
          order: 10
 | 
						|
          stage: !KeyOf default-authentication-identification
 | 
						|
          target: !KeyOf flow
 | 
						|
      model: authentik_flows.flowstagebinding
 | 
						|
    - identifiers:
 | 
						|
          order: 20
 | 
						|
          stage: !KeyOf default-authentication-password
 | 
						|
          target: !KeyOf flow
 | 
						|
      model: authentik_flows.flowstagebinding
 | 
						|
    - identifiers:
 | 
						|
          order: 30
 | 
						|
          stage: !KeyOf default-authentication-mfa-validation
 | 
						|
          target: !KeyOf flow
 | 
						|
      model: authentik_flows.flowstagebinding
 | 
						|
    - identifiers:
 | 
						|
          order: 100
 | 
						|
          stage: !KeyOf default-authentication-login
 | 
						|
          target: !KeyOf flow
 | 
						|
      model: authentik_flows.flowstagebinding
 | 
						|
```
 | 
						|
<!-- prettier-ignore-end -->
 |