Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhadev/react-sequelize-boilerplate
https://github.com/jhadev/react-sequelize-boilerplate
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jhadev/react-sequelize-boilerplate
- Owner: jhadev
- Created: 2020-03-27T23:14:34.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T07:51:56.000Z (about 2 years ago)
- Last Synced: 2024-11-21T03:57:32.594Z (2 months ago)
- Language: JavaScript
- Size: 956 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-sequelize
_This does not use Sequelize CLI_
## usage
1. Create database in MySQL Workbench
```
DROP DATABASE IF EXISTS project3;CREATE DATABASE project3;
```2. Create .env in root of project
In that file create key and values like this to use your local MySQL Database
```
DB_NAME=project3
DB_USER=root
DB_PW=password
```3. npm install
4. npm start