https://github.com/gomjellie/nodebird
webp20 twitter clone project
https://github.com/gomjellie/nodebird
Last synced: 2 months ago
JSON representation
webp20 twitter clone project
- Host: GitHub
- URL: https://github.com/gomjellie/nodebird
- Owner: gomjellie
- Created: 2020-11-15T13:35:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-15T14:30:28.000Z (over 4 years ago)
- Last Synced: 2025-01-23T11:25:44.392Z (4 months ago)
- Language: HTML
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nodebird
webp20 twitter clone projectconfig.json
```json
{
"development": {
"username": "root",
"password": "비밀번호",
"database": "nodebird",
"host": "127.0.0.1",
"dialect": "mysql",
"operatorAliases": false
},
"test": {
"username": "root",
"password": null,
"database": "database_test",
"host": "127.0.0.1",
"dialect": "mysql"
},
"production": {
"username": "root",
"password": null,
"database": "database_production",
"host": "127.0.0.1",
"dialect": "mysql"
}
}```
.env
```sh
COOKIE_SECRET=nodebirdsecret
NODE_ENV=development
```# create db
```
npx sequelize db:create
```# run
```
npm run start
```