Skip to content

Commit 35554f7

Browse files
authored
Update README.md
README update
1 parent 71fb933 commit 35554f7

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -62,29 +62,35 @@ Grandparent Directory: GitHub
6262

6363
1. **Clone the Repository**
6464
```bash
65-
git clone https://github.com/yourusername/database_principles_csc6302.git
66-
cd database_principles_csc6302
65+
[git clone https://github.com/yourusername/database_principles_csc6302.git](https://github.com/ajgalipeau/6302week5.git)
66+
cd <path>\6302week5
6767
```
6868

6969
2. **Create a Virtual Environment**
7070
```bash
7171
python3 -m venv togavenv
72-
source togavenv/bin/activate # On Windows use `togavenv\Scripts\activate`
72+
source togavenv/bin/activate # On Windows use `<path>\togavenv\Scripts\Activate.ps1` && ensure you give Powershell remote signing privileges
7373
```
7474

7575
3. **Install Required Packages**
7676
```bash
7777
pip install -r application/requirements.txt
78+
# Preferred method - use the Makefile
79+
# or go to the application folder path
80+
make install
7881
```
7982

8083
4. **MySQL Database Setup**
81-
- Ensure that MySQL is installed and running.
84+
- Ensure that MySQL is installed and running either in Code,Docker, MySQL Workbench, or your db tool of choice
8285
- Execute the SQL scripts in the `sql/` directory to create tables, add procedures, and insert sample data.
8386

8487
```bash
8588
mysql -u admin_user -p < sql/ddl.sql
86-
mysql -u admin_user -p < sql/procedure_functions.sql
8789
mysql -u admin_user -p < sql/dml.sql
90+
mysql -u admin_user -p < sql/users.sql
91+
mysql -u admin_user -p < sql/permissions.sql
92+
mysql -u admin_user -p < sql/procedure_functions.sql
93+
mysql -u admin_user -p < sql/query.sql
8894
```
8995

9096
## Running the Application

0 commit comments

Comments
 (0)