Giter VIP home page Giter VIP logo

okta-php-trivia-angular's Introduction

Build a Basic CRUD App with Laravel and Angular

This example shows how to use Laravel and Angular to create a basic CRUD app for hosting trivia games, using Okta to handle authentication.

Please read (Article Placeholder) to see how this application was built.

Prerequisites: PHP, Node, Okta developer account

Okta has Authentication and User Management APIs that reduce development time with instant-on, scalable user infrastructure. Okta's intuitive API and expert support make it easy for developers to authenticate, manage, and secure users and roles in any application.

Getting Started

Sign up for an Okta developer account and create a new application. Make note of the Client ID and Issuer values for your application.

Clone this project using the following commands:

git clone [email protected]:oktadeveloper/okta-php-trivia-angular.git
cd okta-php-trivia-angular

Set up the Backend

Create the database and user for the project:

mysql -uroot -p
CREATE DATABASE trivia CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL on trivia.* to [email protected] identified by 'trivia';
quit

Copy the example .env file:

cd trivia-web-service
cp .env.example .env

Put the database details in the .env file:

DB_DATABASE=trivia
DB_USERNAME=trivia
DB_PASSWORD=trivia

Edit app/Http/Middleware/AuthenticateWithOkta.php and replace the Okta credentials with your own.

Install the project dependencies, generate a project key, run the migrations and then start the server:

composer install
php artisan key:generate
php artisan migrate
php artisan serve

Loading 127.0.0.1:8000 now should show the default Laravel page, and 127.0.0.1:8000/api/players should show you a 'Unauthorized' message. NOTE: if using a virtual machine and NAT, you might need to run the server as php artisan serve --host 0.0.0.0 instead.

Set up the Frontend

Edit the Okta configuration in src/app/app.module.ts to fill in your client ID and other application details. (Refer to the (Article Placeholder) for more details.) Then install the dependencies and run the server:

cd trivia-web-client-angular
npm install -g @angular/cli@^6.1
npm install
ng serve --open

NOTE: if using a virtual machine and NAT, you might need to run the server as ng serve --open --host 0.0.0.0 instead.

Loading 127.0.0.1:4200 now should show you the application.

Help

Please post any questions as comments on the (Article Placeholder), or visit our Okta Developer Forums. You can also email [email protected] if would like to create a support ticket.

License

Apache 2.0, see LICENSE.

okta-php-trivia-angular's People

Contributors

endymion1977 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.