https://github.com/asad-iftikhar/angular7-laravel-todo
Under this I'll develop the APIs in laravel and for front-end i'm going to use Angular 7
https://github.com/asad-iftikhar/angular7-laravel-todo
Last synced: about 2 months ago
JSON representation
Under this I'll develop the APIs in laravel and for front-end i'm going to use Angular 7
- Host: GitHub
- URL: https://github.com/asad-iftikhar/angular7-laravel-todo
- Owner: Asad-Iftikhar
- Created: 2019-10-18T09:00:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:50:03.000Z (over 2 years ago)
- Last Synced: 2025-01-16T07:57:47.243Z (4 months ago)
- Language: PHP
- Size: 2.44 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 52
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angular7-laravel-todo
This is simple todo app in which user can create,delete,edit todo tasks. This application is developed in angular 7 with laravel 5.
## Installation
Clone the repository-
```
git clone https://github.com/Asad-Iftikhar/angular7-laravel-todo.git
```
## Configuration of API - LaravelThen cd into the folder with this command-
```
cd api
```Then do a composer install
```
composer install
```Then create a environment file using this command-
> cp .env.example .env
Then edit .env file with appropriate credential for your database server.Then create a database named todo and then do a database migration using this command-
> php artisan migrate
Run server
Run server using this command-> php artisan serve
## Configuration of Front App - Angular 7
Then cd into the folder with this command-```
cd api
```Then do a npm install to download the dependences
```
npm install
```
serve the front app by running the following command
```
ng serve
```