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
- Host: GitHub
- URL: https://github.com/yuryalencar/doctrine-angular_samplecrud
- Owner: yuryalencar
- License: mit
- Created: 2020-03-29T00:26:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T19:14:15.000Z (almost 2 years ago)
- Last Synced: 2025-01-04T20:52:05.609Z (9 months ago)
- Topics: angularjs, doctrine, doctrine-orm, javascript, php7, slim, slim-framework
- Language: PHP
- Homepage:
- Size: 3.69 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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