The Covid Community Response Team was set up in an effort to help coordinate ongoing national & local community campaigns/efforts in the fight against Covid 19.
Practical steps can be taken to harvest synergies on a national level resulting in a net benefit for communities on both a national and local level.
In practical terms, the low hanging fruit for the accrual of synergies is through standardisation of communication and the standardisations of campaigns. This is as true for any organisation as it is for us as a community.
-
Assume you already have LAMP stack set up. If not follow the steps here: https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-ubuntu-18-04
-
Assume you have composer installed. If not go here: https://getcomposer.org/download/
-
Assume you have node modules installed. If not go here: https://nodejs.org/en/download/
-
Clone the repo
-
copy
.env.example
to a new file called.env
-
In your terminal navigate to the folder where you have cloned the repo and run the following:
php artisan key:generate
composer install
to generate vendor foldernpm install
to generate node_modules folder
-
Go to
.env
file you created and replace the following:- Default
APP_URL
toAPP_URL=http://localhost/Covid19CommunityResponse/public/
- Change your Database name in
DB_DATABASE
if you want to and create a new Databse with the same name in your phpmyadmin. - Set your
DB_USERNAME
andDB_PASSWORD
- Default
-
run
php artisan migrate
to migrate the tables. More information can be found here: https://laravel.com/docs/7.x/migrations -
To build npm run dev or npm run watch.
The Laravel framework is open-sourced software licensed under the MIT license.