{"id":24375478,"url":"https://github.com/urpagin/urpagin-dot-net","last_synced_at":"2026-04-24T00:36:41.280Z","repository":{"id":272212492,"uuid":"786589200","full_name":"Urpagin/urpagin-dot-net","owner":"Urpagin","description":"Source code for my personal website.","archived":false,"fork":false,"pushed_at":"2025-08-22T06:22:45.000Z","size":48591,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-30T07:31:56.633Z","etag":null,"topics":["adapters","ci-cd","continuous-deployment","deployment","devops","docker","github-actions","html","javascript","linux","npm","personal-website","secrets","shell","static-site","svelte","svelte-kit","typescript","web-development","website"],"latest_commit_sha":null,"homepage":"https://urpagin.net","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Urpagin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-14T22:42:56.000Z","updated_at":"2025-12-21T11:54:24.000Z","dependencies_parsed_at":"2025-07-24T02:12:54.047Z","dependency_job_id":"6190d8f1-7409-4b9d-a236-6fbe41b8db07","html_url":"https://github.com/Urpagin/urpagin-dot-net","commit_stats":null,"previous_names":["urpagin/urpagin-dot-net"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Urpagin/urpagin-dot-net","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Urpagin%2Furpagin-dot-net","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Urpagin%2Furpagin-dot-net/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Urpagin%2Furpagin-dot-net/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Urpagin%2Furpagin-dot-net/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Urpagin","download_url":"https://codeload.github.com/Urpagin/urpagin-dot-net/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Urpagin%2Furpagin-dot-net/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32204710,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T00:06:41.111Z","status":"ssl_error","status_checked_at":"2026-04-24T00:06:35.224Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adapters","ci-cd","continuous-deployment","deployment","devops","docker","github-actions","html","javascript","linux","npm","personal-website","secrets","shell","static-site","svelte","svelte-kit","typescript","web-development","website"],"created_at":"2025-01-19T05:57:40.855Z","updated_at":"2026-04-24T00:36:41.243Z","avatar_url":"https://github.com/Urpagin.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Urpagin.net\n\n## Deploy on Push (Continuous Deployment with Docker \u0026 GitHub Actions)\n\nThe following steps assume you are working on a Linux machine.\n\n### Steps to Set Up Continuous Deployment:\n\n1. On your **local machine**, generate a new SSH key by running:\n\n   ```bash\n   ssh-keygen -t ed25519 -f ~/.ssh/deploy_key\n   ```\n\n2. Copy the generated public SSH key to your server (the one where the website will run) by using the following command:\n\n   ```bash\n   ssh-copy-id -i ~/.ssh/deploy_key.pub user@host\n   ```\n\n3. Go to your GitHub repository and navigate to:\n   **Settings** -\u003e **Secrets and variables** -\u003e **Actions** -\u003e **New repository secret**.  \n   Add the following secrets:\n\n   - `PROJECT_PATH`: The absolute path where you cloned your repository on the remote server (e.g., `/home/debian/urpagin-dot-net/`).\n   - `SSH_USER`: The username used to log in to your remote server.\n   - `SSH_HOST`: The IP address of the remote server.\n   - `SSH_PRIVATE_KEY`: On your **local machine**, copy the contents of the `~/.ssh/deploy_key` file, which contains the private SSH key.\n\n4. On your remote server, run the `build_and_run.sh` script to start the project.  \n   From this point onward, any `git push` action to the `master` branch will automatically trigger the `build_and_run.sh` script, via SSH, to update the website.\n\n---\n\n## Manual Deployment (Using Docker)\n\nOn your remote server, follow these steps:\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/Urpagin/urpagin-dot-net.git\n   ```\n\n2. Navigate to the project directory:\n\n   ```bash\n   cd urpagin-dot-net/\n   ```\n\n3. Make the `build_and_run.sh` script executable:\n\n   ```bash\n   chmod +x build_and_run.sh\n   ```\n\n4. Run the script:\n   ```bash\n   ./build_and_run.sh\n   ```\n\n## Manual Deployment (Using npm)\n\n### Developing\n\nStart a development server:\n\n```bash\nnpm run dev\n\n# or start the server and open the app in a new browser tab\nnpm run dev -- --open\n```\n\n### Building\n\nTo create a production version of your app:\n\n```bash\nnpm run build\n```\n\nYou can preview the production build with `npm run preview`.\n\n\u003e To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furpagin%2Furpagin-dot-net","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Furpagin%2Furpagin-dot-net","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furpagin%2Furpagin-dot-net/lists"}