Skip to content

Commit c68324d

Browse files
committed
fixed README
1 parent a14e549 commit c68324d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ s = cs50.get_string();
2626
1. Run `sudo su -`.
2727
1. Run `apt install -y libmysqlclient-dev mysql-server postgresql`.
2828
1. Run `pip3 install mysqlclient psycopg2-binary`.
29-
1. In `/etc/mysql/mysql.conf.d/mysqld.conf`, add `skip-grant-tables` under `[mysqld]`.
29+
1. In `/etc/mysql/mysql.conf.d/mysqld.cnf`, add `skip-grant-tables` under `[mysqld]`.
3030
1. In `/etc/profile.d/cli.sh`, remove `valgrind` function for now.
3131
1. Run `service mysql start`.
3232
1. Run `mysql -e 'CREATE DATABASE IF NOT EXISTS test;'`.
@@ -41,7 +41,7 @@ s = cs50.get_string();
4141
host all all 127.0.0.1/32 trust
4242
```
4343
1. Run `service postgresql start`.
44-
1. Run `psql -c 'create database test;' -U postgres.
44+
1. Run `psql -c 'create database test;' -U postgres`.
4545
1. Run `touch test.db`.
4646

4747
### Sample Tests

0 commit comments

Comments
 (0)