Corona time app gives information about Covid-19. Users can register and log in and see daily updated information which represent worldwide and countries individual statistics.
- PHP10.7.1_and up
- MYSQL@8 and up
- [email protected] and up_
- [email protected] and up_
- [email protected] - back-end framework
- Spatie Translatable - package for translation
1. First of all you need to clone E Space repository from github:
git clone https://github.com/RedberryInternship/giorgi-zanqaidze-corona-time
2. Next step requires you to run composer install in order to install all the dependencies.
composer install
3. after you have installed all the PHP dependencies, it's time to install all the JS dependencies:
npm install
in order to build your JS/SaaS resources.
4. Now we need to set our env file. Go to the root of your project and execute this command.
cp .env.example .env
5\. key generage
php artisan key:generate
And now you should provide .env file all the necessary environment variables:
MYSQL:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=*
DB_USERNAME=*
DB_PASSWORD=*
if you've completed getting started section, then migrating database if fairly simple process, just execute:
php artisan migrate
You can run Laravel's built-in development server by executing:
php artisan serve
it builds your tailwind.js files into executable scripts.
Project structure is fairly straitforward(at least for laravel developers)...
For more information about project standards, take a look at these docs:
[Database Design Diagram]