File tree Expand file tree Collapse file tree 4 files changed +131
-13
lines changed Expand file tree Collapse file tree 4 files changed +131
-13
lines changed Original file line number Diff line number Diff line change 1+ # Dependencies
2+ node_modules /
3+ npm-debug.log *
4+ yarn-debug.log *
5+ yarn-error.log *
6+
7+ # Build outputs
8+ dist /
9+ build /
10+ .next /
11+ out /
12+
13+ # Environment variables
14+ .env
15+ .env.local
16+ .env.development.local
17+ .env.test.local
18+ .env.production.local
19+
20+ # IDE and editor files
21+ .vscode /
22+ .idea /
23+ * .swp
24+ * .swo
25+ * ~
26+
27+ # OS generated files
28+ .DS_Store
29+ .DS_Store ?
30+ ._ *
31+ .Spotlight-V100
32+ .Trashes
33+ ehthumbs.db
34+ Thumbs.db
35+
36+ # Logs
37+ logs
38+ * .log
39+
40+ # Runtime data
41+ pids
42+ * .pid
43+ * .seed
44+ * .pid.lock
45+
46+ # Coverage directory used by tools like istanbul
47+ coverage /
48+ * .lcov
49+
50+ # nyc test coverage
51+ .nyc_output
52+
53+ # Dependency directories
54+ jspm_packages /
55+
56+ # Optional npm cache directory
57+ .npm
58+
59+ # Optional eslint cache
60+ .eslintcache
61+
62+ # Microbundle cache
63+ .rpt2_cache /
64+ .rparcel_cache /
65+
66+ # Optional REPL history
67+ .node_repl_history
68+
69+ # Output of 'npm pack'
70+ * .tgz
71+
72+ # Yarn Integrity file
73+ .yarn-integrity
74+
75+ # parcel-bundler cache (https://parceljs.org/)
76+ .cache
77+ .parcel-cache
78+
79+ # next.js build output
80+ .next
81+
82+ # nuxt.js build output
83+ .nuxt
84+
85+ # vuepress build output
86+ .vuepress /dist
87+
88+ # Serverless directories
89+ .serverless /
90+
91+ # FuseBox cache
92+ .fusebox /
93+
94+ # DynamoDB Local files
95+ .dynamodb /
96+
97+ # TernJS port file
98+ .tern-port
99+
100+ # Stores VSCode versions used for testing VSCode extensions
101+ .vscode-test
102+
103+ # Temporary folders
104+ tmp /
105+ temp /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -38,3 +38,29 @@ To run the documentation site locally:
3838 ```
3939
4040The development server will automatically reload when you make changes to the documentation files.
41+
42+ ## Open Issues
43+
44+ Below are links to slack conversations about what docs need to be included as part of the revamp.
45+
46+ - https://buildwithfern.slack.com/archives/C0811KJCBL4/p1749843216981529
47+ - https://buildwithfern.slack.com/archives/C05J55L8JES/p1749852300828139
48+ - https://buildwithfern.slack.com/archives/C07EQ2VEFU5/p1750085639878549
49+ - https://buildwithfern.slack.com/archives/C052DFWVCG6/p1750097991824229?thread_ts=1750093356.728189&cid=C052DFWVCG6
50+ - Add on-prem docs to enterprise https://buildwithfern.slack.com/archives/C069FN9958X/p1750085336657299
51+ - https://buildwithfern.slack.com/archives/C052DFWVCG6/p1750105603399839
52+ - https://buildwithfern.slack.com/archives/C06N8147J4W/p1750374966649439
53+ - https://buildwithfern.slack.com/archives/C08L9HGAZ2T/p1750429522110329?thread_ts=1750420489.267739&cid=C08L9HGAZ2T
54+ - https://buildwithfern.slack.com/archives/C06N8147J4W/p1750523650796109
55+ - https://buildwithfern.slack.com/archives/C06UVH9HKRC/p1750709442534809?thread_ts=1750703512.877769&cid=C06UVH9HKRCj
56+ - https://buildwithfern.slack.com/archives/C08T7EHDHMW/p1750793551604399?thread_ts=1750792603.757169&cid=C08T7EHDHMW
57+
58+ If you're working on any of these documentation items:
59+
60+ 1 . ** Check the current status** in the [ DOCSTODO.md] ( ./DOCSTODO.md ) file
61+ 2 . ** Update the relevant Slack threads** with your progress
62+ 3 . ** Follow the local development setup** above to test your changes
63+ 4 . ** Submit a pull request** with your documentation improvements
64+
65+ For more detailed information about specific documentation requirements, please refer to the individual Slack threads linked above or contact the documentation team.
66+
You can’t perform that action at this time.
0 commit comments