diff options
| author | thomas grothe <thomas@Shai-Hulud.myfiosgateway.com> | 2025-06-22 17:54:57 -0400 |
|---|---|---|
| committer | thomas grothe <thomas@Shai-Hulud.myfiosgateway.com> | 2025-06-22 17:54:57 -0400 |
| commit | 5ecfe8e134aaab52cf08c3a409d6f3fef3d6c26b (patch) | |
| tree | cd2a39d07a5614e7e069c0f623266f696ecf2d74 | |
| parent | 18f7cde415117856b8f8975126e97445d86a7636 (diff) | |
got some plans for file management, made a hype doc, going to write a bio on the homepage
| -rw-r--r-- | README.md | 5 | ||||
| -rwxr-xr-x | config/filesystems.php | 37 | ||||
| -rw-r--r-- | docs/hype.md | 26 | ||||
| -rwxr-xr-x | resources/views/home.blade.php | 3 |
4 files changed, 70 insertions, 1 deletions
@@ -16,7 +16,10 @@ https://laravel.com/docs/11.x/blade - index filter and sort - quickbuttons, for adding in snippets of things like embedding an image - update markup on a timer instead of every character (and/or see if i can prevent it from making unnecessary network requests like loading embedded files) - +- each user has their own status pane html element + - and user conglomerate's (e.g. a band) can have their own full html page + - the html is stored in db +- look into forwarding routes to containers for security and better route networkning - tests - test the return code and body of every route to make sure no error introduced diff --git a/config/filesystems.php b/config/filesystems.php index 4d06cdc..1f973ee 100755 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -56,7 +56,44 @@ return [ 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, ], + 'ftp' => [ + 'driver' => 'ftp', + 'host' => env('FTP_HOST'), + 'username' => env('FTP_USERNAME'), + 'password' => env('FTP_PASSWORD'), + // Optional FTP Settings... + // 'port' => env('FTP_PORT', 21), + // 'root' => env('FTP_ROOT'), + // 'passive' => true, + // 'ssl' => true, + // 'timeout' => 30, + ], + 'sftp' => [ + 'driver' => 'sftp', + 'host' => env('SFTP_HOST'), + + // Settings for basic authentication... + 'username' => env('SFTP_USERNAME'), + 'password' => env('SFTP_PASSWORD'), + + // Settings for SSH key-based authentication with encryption password... + 'privateKey' => env('SFTP_PRIVATE_KEY'), + 'passphrase' => env('SFTP_PASSPHRASE'), + + // Settings for file / directory permissions... + 'visibility' => 'private', // `private` = 0600, `public` = 0644 + 'directory_visibility' => 'private', // `private` = 0700, `public` = 0755 + + // Optional SFTP Settings... + // 'hostFingerprint' => env('SFTP_HOST_FINGERPRINT'), + // 'maxTries' => 4, + // 'passphrase' => env('SFTP_PASSPHRASE'), + // 'port' => env('SFTP_PORT', 22), + // 'root' => env('SFTP_ROOT', ''), + // 'timeout' => 30, + // 'useAgent' => true, + ], ], /* diff --git a/docs/hype.md b/docs/hype.md new file mode 100644 index 0000000..40680b6 --- /dev/null +++ b/docs/hype.md @@ -0,0 +1,26 @@ +# HYPE DOC # + +## why be excited about this project? +- it will be way better to use this as a social media interface than any of the existing platforms +- it will probably convince a few people, if not more, to also use their own websites as a better social media platform +- it allows for more freedom of action +- it is extremely useful to have my own file server +- it is extremely useful to be able to run my own collaboration tools +- it will help me learn a lot +- it will provide a useful service to others, via the link database and writing platform +- i can put it on my resume to show that i did something in addition to working. if my job doesn't fulfill me, this might +- it is actually fun when i'm in the mood to do it +- it will help me get in the habit of sustaining momentum which i will need to work on all my other projects +- it will force me to communicate about technology, which i am decent at, better than most people at, and what the world needs more of i think. + +## broken-down tasks +- make the intro header thing +- get the user accounts working properly + - make a nice user dashboard. shows all relevant data-objects associated with the user + - + - +- finish the link database (add new links). come up with a better UI. +- make a good database-searching functionality +- implement some more htmx + - + diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php index d46a1b7..be3523c 100755 --- a/resources/views/home.blade.php +++ b/resources/views/home.blade.php @@ -18,7 +18,10 @@ <p></p> <p>Number of friends connected: <b id = "numFriendsConnected"></b></p> <!-- show number of other connections to webserver --> <br> + <h6>Who am I?</h6> + I am a man. <iframe src = "https://www.youtube.com/watch?v=6JE0Hfvjgsw"></iframe> <p>Who are you?</p><input type = "text" id = "input_who" /> + <br> </div> <br> </header> |
