{"id":22055667,"url":"https://github.com/harshmangalam/qwik-x","last_synced_at":"2025-09-07T14:46:12.801Z","repository":{"id":191837198,"uuid":"680856154","full_name":"harshmangalam/qwik-x","owner":"harshmangalam","description":"Social media web app like Twitter build with Qwikcity","archived":false,"fork":false,"pushed_at":"2024-10-28T18:09:55.000Z","size":777,"stargazers_count":27,"open_issues_count":24,"forks_count":27,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T14:49:31.138Z","etag":null,"topics":["authentication","daisyui","drizzle-orm","hacktoberfest","hacktoberfest10","hacktoberfest2023","javascript","plotly","postgres","postgresql","python","qwik","qwikcity","streamlit","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/harshmangalam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2023-08-20T16:20:27.000Z","updated_at":"2024-10-23T20:39:37.000Z","dependencies_parsed_at":"2024-10-27T20:10:50.017Z","dependency_job_id":"3cb62f67-1362-4178-9405-af5b7431cf5b","html_url":"https://github.com/harshmangalam/qwik-x","commit_stats":{"total_commits":350,"total_committers":16,"mean_commits":21.875,"dds":0.06571428571428573,"last_synced_commit":"e0a397df628141dcc8d8b35acf494dd8b8e84bad"},"previous_names":["harshmangalam/qwik-x"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harshmangalam%2Fqwik-x","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harshmangalam%2Fqwik-x/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harshmangalam%2Fqwik-x/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harshmangalam%2Fqwik-x/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/harshmangalam","download_url":"https://codeload.github.com/harshmangalam/qwik-x/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246927835,"owners_count":20856198,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["authentication","daisyui","drizzle-orm","hacktoberfest","hacktoberfest10","hacktoberfest2023","javascript","plotly","postgres","postgresql","python","qwik","qwikcity","streamlit","tailwindcss","typescript"],"created_at":"2024-11-30T16:10:30.613Z","updated_at":"2025-04-03T03:10:44.984Z","avatar_url":"https://github.com/harshmangalam.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qwik-X ⚡️\n\nSocial media web app like Twitter build with Qwikcity\n\n## Tech Stack\n\n- Qwikcity\n- Typescript\n- Drizzle ORM\n- Neon\n- Postgresql\n- Node/Express server\n- Tailwindcss\n- daisyui\n\n\u003e Note: copy .env.example inside .env\n\n## Setup\n\n### Step 1 - Clone the repo\n\n```shell\ngit clone https://github.com/harshmangalam/qwik-x.git\n```\n\n### Step 2 - move to project\n\n```shell\ncd qwik-x\n```\n\n### Step 3 - Install dependencies\n\n```shell\npnpm i\n```\n\n### Step 4 - Copy .env.example to .env\n\n```shell\ncp .env.example .env\n```\n\n## Configure Neon for Serverless PostgreSQL Database\n\nNeon provides a serverless PostgreSQL that scales automatically and offers significant performance benefits. To integrate Neon with your Qwik-X app, follow these steps:\n\n### Step 1: Create a Neon Account\n\n- Sign up for a free tier account at [Neon](https://neon.tech/). Follow the prompts to set up your account.\n\n### Step 2: Create Your Database\n\n- Once logged in, create a new database. Choose the appropriate region closest to your user base to minimize latency.\n- After creating your database, you will be provided with a database URL. This URL is used to connect your application to the Neon database.\n\n### Step 3: Configure Your Application\n\n- Open the `.env` file in your project’s root directory.\n- Replace the existing database URL with the one provided by Neon in the `DRIZZLE_DATABASE_URL` variable:\n  ```\n  DRIZZLE_DATABASE_URL=postgres://{user}:{password}@{hostname}:{port}/{database}\n  ```\n\n### Step 4: Validate the Connection\n\n- Ensure that your application can connect to the Neon database by running a simple test query or using the Drizzle ORM commands provided in your package scripts.\n\n### Step 5: Schema Migration\n\n- To create and sync the database schema:\n  ```shell\n  pnpm migration:push\n  ```\n- This command will align your PostgreSQL schema with the current state of your application models.\n\n### Step 6: Start Your Development Server\n\n- Once the database is configured and the schema is in place, start your development server:\n  ```shell\n  pnpm dev\n  ```\n\n### Troubleshooting\n\n- If you encounter connection issues, verify the database URL and your internet connection.\n- Ensure that your Neon account's security settings allow connections from your application’s IP address.\n\n## PRs\n\n- Always raise PR for base branch `dev`\n\n## Optional Setup\n\n### Interaction Analysis 🌏\n\n#### Teck Stack Used🔥\n\n- Python\n- Streamlit\n- Plotly\n\n#### Code For Installing Packages 📦\n\n```shell\ncd analysis\n```\n\n```shell\npip install -r requirements.txt\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fharshmangalam%2Fqwik-x","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fharshmangalam%2Fqwik-x","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fharshmangalam%2Fqwik-x/lists"}