https://github.com/tsimpdim/carsdy
A simple web app which helps with studying using flashcards :)
https://github.com/tsimpdim/carsdy
blade blade-template flashcards laravel laravel-framework laravel57 learning mysql php studying
Last synced: about 2 months ago
JSON representation
A simple web app which helps with studying using flashcards :)
- Host: GitHub
- URL: https://github.com/tsimpdim/carsdy
- Owner: TsimpDim
- License: gpl-3.0
- Created: 2019-02-06T08:37:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-24T09:04:30.000Z (over 7 years ago)
- Last Synced: 2025-05-20T01:42:02.583Z (about 1 year ago)
- Topics: blade, blade-template, flashcards, laravel, laravel-framework, laravel57, learning, mysql, php, studying
- Language: PHP
- Size: 438 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
Carsdy is a web app that allows one to build flashcards for easy studying! It's currently in development so be patient :/
### boring details
Carsdy is built with Laravel 5.7 (PHP) and MySQL. The install guide for Laravel is [here](https://laravel.com/docs/5.7/installation):
0. Install `MySql` and `php` if they are not already installed in your OS.
1. Install [Composer](https://getcomposer.org/) to manage any dependencies.
2. Use `php -m` to check if you cover all the dependencies listed in the guide. If not, well, install them.
3. Run `composer global require laravel/installer` as stated in the guide.
4. Navigate to the repo directory and in the `.env` file configure any values you need to (especially the database).
5. Run `php artisan migrate` to create the database and the tables used.
6. Run `php artisan db:seed` to seed the tables.
7. Run `php artisan serve` to run the app over `artisan`.