Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.13 KB

README.md

File metadata and controls

48 lines (39 loc) · 1.13 KB

PASSWD

en pl

Deployment link: PASSWD

Technologies

  • Laravel
  • React
  • MySQL

Opis

Application allows users to create, edit and delete passwords, and then send them between registered users. The application uses an author's algorithm for two-way password encryption.

Concept file: concept

Setup

  1. Clone repository

  2. Install required dependencies

    composer install
  3. Create .env file based on .env.example

  4. Generate application key

    php artisan key:generate
  5. Run migrations

    php artisan migrate
  6. Start server

    php artisan serve
  7. Go to the /react folder and install dependencies

    cd react
    npm run install
    npm run dev
  8. App runs on: http://localhost:4000

By Michał Szajner