{"id":13462206,"url":"https://github.com/msurguy/critterapp","last_synced_at":"2025-08-03T21:32:48.980Z","repository":{"id":5383674,"uuid":"6571576","full_name":"msurguy/critterapp","owner":"msurguy","description":"Twitter like application made with Laravel in 10 hours. Demo at","archived":false,"fork":false,"pushed_at":"2024-02-15T00:10:49.000Z","size":1852,"stargazers_count":61,"open_issues_count":1,"forks_count":33,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-10-29T11:10:54.152Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://demos.maxoffsky.com/critter","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/msurguy.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.txt","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":"2012-11-06T23:45:11.000Z","updated_at":"2024-10-16T08:36:13.000Z","dependencies_parsed_at":"2024-07-31T12:17:20.774Z","dependency_job_id":null,"html_url":"https://github.com/msurguy/critterapp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msurguy%2Fcritterapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msurguy%2Fcritterapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msurguy%2Fcritterapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msurguy%2Fcritterapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/msurguy","download_url":"https://codeload.github.com/msurguy/critterapp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228567007,"owners_count":17937986,"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":[],"created_at":"2024-07-31T12:00:42.085Z","updated_at":"2024-12-07T06:11:56.700Z","avatar_url":"https://github.com/msurguy.png","language":"PHP","funding_links":[],"categories":["Laravel"],"sub_categories":[],"readme":"# Critter, A Twitter like application written with [Laravel] in under 10 hours by [@msurguy]\n\nImagine Twitter is down again. It's dark outside, and how can you tell everyone about that? \nCritter to the rescue. Deploy your own Twitter with Laravel and any cloud service, in minutes! \n\n##What does this do ?   \nIt is a PHP/MySQL web application written in Laravel for the purpose of learning. \n\nThe users can register, sign in, post critts, view critts and follow other users.\n\nSee working demo at http://demos.maxoffsky.com/critter\n\n## How to get this thing running? \nYou have few options:\nTo deploy in the cloud, use Pagodabox or PHPFog and watch my tutorials on [Udemy]\nTo deploy on the local machine use MAMP, WAMP or Apache/PHP 5.3/MySQL, edit your settings in the application/config folder according to Laravel documentation. Or again, watch my tutorials on [Udemy] \n\nThe sql for the database structure is below:\n```\nCREATE TABLE `critts` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `user_id` int(11) NOT NULL,\n  `critt` text COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` datetime NOT NULL,\n  `updated_at` datetime NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;\n\nCREATE TABLE `followers` (\n  `user_id` int(11) NOT NULL,\n  `following_id` int(11) NOT NULL,\n  PRIMARY KEY (`user_id`,`following_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n\nCREATE TABLE `users` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `username` varchar(200) COLLATE utf8_unicode_ci NOT NULL,\n  `password` varchar(200) COLLATE utf8_unicode_ci NOT NULL,\n  `name` varchar(200) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` datetime NOT NULL,\n  `updated_at` datetime NOT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `users_username_unique` (`username`)\n) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;\n\nINSERT INTO `users` (`id`, `username`, `password`, `name`, `created_at`, `updated_at`) VALUES\n(1, 'admin', '$2a$08$iI.Vafp1s9CxDegDH2hA7uyaatGcVpYcR1tVE9VGDFEYgqf08teO.', 'Pete Adminovich', '0000-00-00 00:00:00', '0000-00-00 00:00:00');\n\n```\n  \n##Features: \n* [Laravel]\n* [Bootstrapper Bundle]\n* [Font Awesome]\n* [jQuery char Counter]\n* Controllers\n\n## Contributing to This code\nContributions are encouraged and welcome. Submit pull requests or ask questions if something's not clear\n\n### License\nThis code is open source and is under MIT license.\n\n  [@msurguy]: http://twitter.com/msurguy\n  [Laravel]: http://laravel.com\n  [Bootstrapper Bundle]: http://bundles.laravel.com/bundle/bootstrapper\n  [jQuery char Counter]: http://www.tomdeater.com\n  [Font Awesome]: http://fortawesome.github.com/Font-Awesome/\n  [Udemy]: http://www.udemy.com/develop-web-apps-with-laravel-php-framework/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsurguy%2Fcritterapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmsurguy%2Fcritterapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsurguy%2Fcritterapp/lists"}