Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jsonfm/introduction-to-databases
💙 Introduction to databases coursera course by Meta.
https://github.com/jsonfm/introduction-to-databases
coursera databases docker mysql sql
Last synced: 20 days ago
JSON representation
💙 Introduction to databases coursera course by Meta.
- Host: GitHub
- URL: https://github.com/jsonfm/introduction-to-databases
- Owner: jsonfm
- Created: 2023-10-15T22:22:06.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-15T22:37:11.000Z (about 1 year ago)
- Last Synced: 2023-10-16T19:22:13.691Z (about 1 year ago)
- Topics: coursera, databases, docker, mysql, sql
- Homepage: https://www.coursera.org/learn/introduction-to-databases
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 💙 Introduction to databases
Here are some codes I wrote during the course by `Meta`, also I included a `docker` image to run a mysql database, and some designs I made on `MySQLWorkbench`.
### 🐋 Docker
To run the mysql database execute:
```
docker compose up -d
```
Don't forget to add the environment variables:
```
#.env.exampleMYSQL_ROOT_PASSWORD=my_root_password
MYSQL_DATABASE=my_database
MYSQL_USER=my_user
MYSQL_PASSWORD=my_password```
### ⚡️ Connection
Using mysql client you can run:
```
mysql -h 127.0.0.1 -P 3306 -u -p
```