Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cristianofilho/crud-angular
CRUD Angular and MySQL
https://github.com/cristianofilho/crud-angular
angular angularjs crud mysql
Last synced: about 1 month ago
JSON representation
CRUD Angular and MySQL
- Host: GitHub
- URL: https://github.com/cristianofilho/crud-angular
- Owner: CristianoFIlho
- Created: 2021-12-15T20:52:55.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-18T14:04:05.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T02:01:58.625Z (8 months ago)
- Topics: angular, angularjs, crud, mysql
- Language: HTML
- Homepage:
- Size: 49.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD-Angular
CRUD Angular and MySQL## Connect MVC Node Express API to Angular application for CRUD operations
1. Setup MySQL, Node, and Angular
2. Create backend/config/config.json and change the password to your MySQL password.```json
{
"host": "localhost",
"user": "root",
"database": "groceries",
"password": ""
}
```Note: For development purposes the host is localhost but this will need to be updated if you decide to deploy the application. By Default, MySQL gives the user 'root' with all privileges. You can simply change this to another user if desired. In this application we named our database 'groceries', however, if you went with a different name this will need to be changed.
2. cd backend
3. $ npm start
4. cd ../frontend
5. npm start