Here is a list of steps to deploy a PostgREST instance to Dokku.
HTTP server in one line of Python.
This is how I customize a clean Ubuntu install. Essentials First we install the essentials. SSH keys Copy public key to paste as needed: Folder structure Update the folder structure. Basically changing the defaults locations of folders like ~/Downloads and ~/Desktop. Create new folders. Make Ubuntu use our new folders. Edit ~/.config/user-dirs.dir and update the…
Each commit message consists of a header, a body, and a footer. Header The header is mandatory and the scope is optional. Type Must be one of the following: Additional types: Scope The scope can be empty. Scope can be any of these: Subject Short (50 chars or less) summary of the change: Footer The…
I had an issue with my Thinkpad x220; when I installed Ubuntu, I had only 100GB available out of 1000 GB. So it ran out of available space quickly. To resize to all the space available, I ran these commands: Sources:
Requirements Steps Create an application. Expose the ports for http and ssh. By default, gitea exposes 3000 for http and 22 for ssh. We want our application to listen externally on port 80, but we need to map our ssh to a different port because 22 is used by the host. We will rely on…
This simple setup can help us expose our local development environment to the public internet. I usually paid for ngrok, but the last time I tried them, they were expensive, and their customer support was terrible. For a small-size project, we can build our own small ngrok with Linux, Caddy, and SSH port forwarding. Requirements:…