{"id":21656748,"url":"https://github.com/bittricky/launch-countdown","last_synced_at":"2026-04-11T10:31:33.131Z","repository":{"id":264503055,"uuid":"893237997","full_name":"bittricky/launch-countdown","owner":"bittricky","description":"Simple web app to countdown on a set time  🚀","archived":false,"fork":false,"pushed_at":"2024-12-06T15:51:10.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-25T06:41:59.620Z","etag":null,"topics":["exercise","flask","html","javascript","python","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/bittricky.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}},"created_at":"2024-11-23T22:23:38.000Z","updated_at":"2024-12-06T15:51:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"935ef986-fbe0-478c-9728-33bde4824f4d","html_url":"https://github.com/bittricky/launch-countdown","commit_stats":null,"previous_names":["bittricky/launch-countdown"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bittricky%2Flaunch-countdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bittricky%2Flaunch-countdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bittricky%2Flaunch-countdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bittricky%2Flaunch-countdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bittricky","download_url":"https://codeload.github.com/bittricky/launch-countdown/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244554125,"owners_count":20471173,"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":["exercise","flask","html","javascript","python","tailwindcss"],"created_at":"2024-11-25T09:16:53.562Z","updated_at":"2025-12-30T19:19:00.895Z","avatar_url":"https://github.com/bittricky.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Launch Countdown\n\nThis is a simple countdown timer web app built using Flask, Tailwind CSS, and JavaScript (ES6). The application allows users to set a countdown time.\n\n## Project Directory Structure\n\n```\nlaunch-countdown/\n├── app.py\n├── templates/\n│   ├── index.html\n│   └── countdown.html\n├── static/\n│   ├── css/\n│   │   ├── styles.css\n│   │   └── output.css\n│   ├── js/\n│   │   └── countdown.js\n├── tailwind.config.js\n├── package.json\n├── package-lock.json\n├── .gitignore\n└── requirements.txt\n```\n\n## Prerequisites\n\n- Python 3.x\n- Node.js and npm\n- Virtual environment support (optional but recommended)\n\n## Setup Instructions\n\n### Clone the Repository\n\n```bash\ngit clone \u003crepository-url\u003e\ncd launch-countdown\n```\n\n### Set Up a Virtual Environment (Optional but Recommended)\n\n```bash\npython3 -m venv venv\nsource venv/bin/activate  # For Unix-based systems\n```\n\n### Install Python Dependencies\n\n```bash\npip install -r requirements.txt\n```\n\n### Install Tailwind CSS\n\nMake sure you have Node.js and npm installed.\n\n```bash\n# Initialize the project\nnpm init -y\n\n# Install Tailwind CSS and related dependencies\nnpm install -D tailwindcss postcss autoprefixer\n\n# Initialize Tailwind CSS configuration\nnpx tailwindcss init\n```\n\n### Configure Tailwind\n\nEdit `tailwind.config.js` to include the content paths for Tailwind to scan:\n\n```js\nmodule.exports = {\n  content: [\"./templates/**/*.html\"],\n  theme: {\n    extend: {},\n  },\n  plugins: [],\n};\n```\n\n### Compile Tailwind CSS\n\nCompile Tailwind's CSS from `styles.css` to `output.css`:\n\n```bash\nnpx tailwindcss -i ./static/css/styles.css -o ./static/css/output.css --watch\n```\n\nThis command will compile your Tailwind CSS classes and continuously watch for changes.\n\n### Run the Flask Application\n\nTo run the application, execute the following command:\n\n```bash\npython app.py\n```\n\nYou can then visit `http://localhost:5000` in your browser to interact with the web application.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbittricky%2Flaunch-countdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbittricky%2Flaunch-countdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbittricky%2Flaunch-countdown/lists"}