An open API service indexing awesome lists of open source software.

https://github.com/yuryalencar/doctrine-angular_samplecrud

Example code using AngularJS, Doctrine, Php 7 and Slim
https://github.com/yuryalencar/doctrine-angular_samplecrud

angularjs doctrine doctrine-orm javascript php7 slim slim-framework

Last synced: 8 months ago
JSON representation

Example code using AngularJS, Doctrine, Php 7 and Slim

Awesome Lists containing this project

README

          

# This is a sample CRUD using Doctrine PHP and Angular
System developed in Slim and PHP 7.4.3.

## 1. Requirements for Install (Back-end)
Technologies :
```
PHP 7.4.3
```
```
MySQL
```
```
Composer
```

## 2. Installation (Back-end)

1. Go to the folder application using cd command on your cmd or terminal and insert:

```
composer install
```
```
create a database with respective name: "waterstore"
```

Run this command in root backend folder:
```
vendor/bin/doctrine orm:schema-tool:create
```

For update database use this command:
```
vendor/bin/doctrine orm:schema-tool:update -f
```

```
php artisan serve