From c66b7bfbf85b1563ce594d1d7f8faf17369c3e82 Mon Sep 17 00:00:00 2001
From: Dylan Wheeler <dwheeler@Dylans-MacBook-Pro.local>
Date: Wed, 23 Apr 2025 12:18:50 -0500
Subject: [PATCH] remove refernces to previous git repo

---
 README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index d76125a..58e020d 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ to asynchronously create a Cheaha user account. Currently the project is being d
 To clone this repo use the command:
 ```
 $ git clone https://gitlab.rc.uab.edu/rc/self-reg-form.git
-$ cd flask_user_reg
+$ cd self-reg-form
 ```
 ## Prerequisites
 ### Setup a Virtual Environment
@@ -36,7 +36,7 @@ called `venv` setup running python3.
     - Install pip using `$ py -m pip install --upgrade pip`<br><br>
 - Ensure Flask and other dependencies are installed to you virtual environment  using the following commands:
 ```
-$ cd ~/your/repo/path/flask_user_reg
+$ cd ~/your/repo/path/self_reg_form
 $ pip install -r requirements.txt
 ```
 -  Note, to install flask in your own `$HOME` use `pip install --user Flask`.
@@ -165,10 +165,10 @@ and output to files in the home directory.
 If all goes well, you should have your processes running in the background. Check the status of these by typing
 `$ jobs`. You should now see the something similar to the following: <br>
 ```
-(venv) [centos@ood flask_user_reg]$ jobs
+(venv) [centos@ood self-reg-form]$ jobs
 [1]-  Running                 celery -A tasks worker --loglevel=info --concurrency=4 > ~/celery.out 2> ~/celery.err &
 [2]+  Running                 python run.py > ~/server.out 2> ~/server.err &
-(venv) [centos@ood flask_user_reg]$
+(venv) [centos@ood self-reg-form]$
 ```
 
 ## 7. Connect to Server
-- 
GitLab