-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnotes.php
More file actions
38 lines (32 loc) · 1.08 KB
/
Copy pathnotes.php
File metadata and controls
38 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
return [
/*
|--------------------------------------------------------------------------
| Notes Path
|--------------------------------------------------------------------------
|
| The directory that holds all note categories. Each sub-directory is a
| category, and each markdown file inside it is a note.
|
*/
'path' => env('NOTES_PATH') ? base_path(env('NOTES_PATH')) : resource_path('notes'),
/*
|--------------------------------------------------------------------------
| Category Display Names
|--------------------------------------------------------------------------
|
| Folder names are converted to display names with Str::headline() by
| default. List the exceptions (acronyms, brand names) here.
|
*/
'display_names' => [
'ai' => 'AI',
'argocd' => 'Argo CD',
'aws' => 'AWS',
'google-cloud-platform' => 'Google Cloud Platform',
'k8s' => 'K8s',
'php' => 'PHP',
'tailwind-css' => 'Tailwind CSS',
'typescript' => 'TypeScript',
],
];