Skip to content

A simple web app which helps with studying using flashcards :)

License

Notifications You must be signed in to change notification settings

TsimpDim/Carsdy

Repository files navigation

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:

  1. Install MySql and php if they are not already installed in your OS.
  2. Install Composer to manage any dependencies.
  3. Use php -m to check if you cover all the dependencies listed in the guide. If not, well, install them.
  4. Run composer global require laravel/installer as stated in the guide.
  5. Navigate to the repo directory and in the .env file configure any values you need to (especially the database).
  6. Run php artisan migrate to create the database and the tables used.
  7. Run php artisan db:seed to seed the tables.
  8. Run php artisan serve to run the app over artisan.