{"id":19750818,"url":"https://github.com/kyledoesdev/profhacks2022","last_synced_at":"2025-02-28T00:47:57.507Z","repository":{"id":111307258,"uuid":"464176707","full_name":"kyledoesdev/ProfHacks2022","owner":"kyledoesdev","description":"Created in 11 hours for Rowan Universities ProfHacks Hackathon. I won the competition with this project!","archived":false,"fork":false,"pushed_at":"2022-02-27T21:21:21.000Z","size":1386,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-10T21:29:44.958Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","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/kyledoesdev.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":"2022-02-27T15:34:29.000Z","updated_at":"2022-02-27T22:47:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"7b3ce1bf-7457-4332-b21d-88d10054cec6","html_url":"https://github.com/kyledoesdev/ProfHacks2022","commit_stats":null,"previous_names":["kyledoesdev/profhacks2022"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyledoesdev%2FProfHacks2022","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyledoesdev%2FProfHacks2022/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyledoesdev%2FProfHacks2022/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyledoesdev%2FProfHacks2022/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kyledoesdev","download_url":"https://codeload.github.com/kyledoesdev/ProfHacks2022/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241080611,"owners_count":19906319,"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-11-12T02:39:30.885Z","updated_at":"2025-02-28T00:47:57.318Z","avatar_url":"https://github.com/kyledoesdev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Volunteering! Fundraising! Support what you believe!\nProfsForChange is a platform for Rowan University Students, Staff and more to find different volunteering activities, fundrasing events and protests to contribute to or attend. Connect with others who and support what you believe, together!\n\nNew events are posted all the time! Register and sign up for different events or create your own! #RowanProud.\n\nCheck out the list of the most recently posted events to the right, or search for an event in the navbar.\n\n\u003ch2\u003eSetup Instructions\u003c/h2\u003e\n\n## Prerequistes\nHave the following installed:\n### Windows:\n* [PHP 7.4](https://windows.php.net/download#php-7.4)\n* [Composer](https://getcomposer.org/)\n* [Git](https://git-scm.com/downloads)\n* [MySql](https://dev.mysql.com/downloads/installer/) / [MySql Workbench](https://dev.mysql.com/downloads/workbench/)\n* [NodeJS](https://nodejs.org/en/)\n\n### Mac:\n\u003ebrew install php@7.4\n\n\u003ebrew install composer\n\n\u003ebrew install git\n\n\u003ebrew install mysql\n\n\u003ebrew install node\n\nand the workbench (link above)\n\n### Once all the above are installed, clone the repository:\n\u003egit clone (repo)\n\nNow set up your database schema in the MySql Workbench:\nYour schemea can be titled whatever you like, I named mine: \"profs_for_change\"\n\n### Configure your .env\nThe .env file is not committed to github, but the .env.example file is\n\u003eCreate a new file called .env in the root of your project directory\n\n\u003eCopy the boilerplate keys and values from the .env.example file into your new .env file\n\n\u003eSet your \"DB_USERNAME\", \"DB_PASSWORD\", \"DB_DATABASE\" values\n\nEverything else should be set correctly from the .env.example file\n\nMine personally are 'root' and 'passoword' but these can be whatever you set up when configuring MySql workbench.\n\u003eSet \"DB_DATABASE\" to whatever you named your schema, eg. \"profs_for_change\"\n\n### Now that your database is setup, run the following commands:\n\u003ecomposer install\n\nIf on windows, you may need to run \n\u003ecomposer install --ignore-platform-reqs\n\nThen run:\n\n\u003enpm install\n\n\u003enpm run dev\n\n\u003ephp artisan migrate --seed\n\nIf you run \"php artisan migrate\" and it fails, or if you have just installed php for the first time, you may need to locate the source of where you installed php and edit your php.ini file and uncomment the following extensions. (remove the semicolons before each line)\n* extension=php_mysql\n* extension=php_mysqli\n* extension=php_pdo_mysql\n* extension=php_intl\n* extension=php_curl\n* extension=php_bz2\n* extension=php_exif\n* extension=php_mbstring\n* extension=php_pdo_sqlite\n\nIf you had a terminal session open, be sure to restart it and then run:\n\u003ephp artisan db:wipe\n\n\u003ephp artisan migrate --seed\n\nAll the migrations should have run now succesfully.\n\n### Next run the following to generate an app key\n\n\u003ephp artisan key:generate\n\n## To launch the devlopment server:\n\n\u003ephp artisan serve\n\nIn your web browser of choice, go to: http://localhost:8000 and you should see the main landing page.\n\n# Youtube Video\n\nhttps://youtu.be/XghXMuyDIGE","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyledoesdev%2Fprofhacks2022","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkyledoesdev%2Fprofhacks2022","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyledoesdev%2Fprofhacks2022/lists"}