Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# ignore settings files

settings.*
venv/

# https://github.com/microsoft/vscode-python/blob/main/.gitignore
.DS_Store
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,14 @@ Includes:
<li>OpenAPI description file</li>
<li>MySql init file</li>
</ul>

## Initial project setup
Open a new terminal and navigate to the project folder, then follow these steps.

| Step | Command | Description |
| --- | --- | --- |
| 1 | `python3 -m venv venv` | Create the `venv` directory |
| 2 | `. venv/bin/activate` | Activate the `venv` |
| 3 | `pip install --upgrade pip` | Upgrade pip |
| 4 | `pip install -r requirements.txt` | Install **requirements** |
| 5 | `python simpleAuthService.py` | Start **development server** |
22 changes: 22 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
argon2-cffi==21.3.0
argon2-cffi-bindings==21.2.0
certifi==2022.12.7
cffi==1.15.1
charset-normalizer==3.0.1
click==8.1.3
cryptography==39.0.0
Flask==2.2.2
Flask-Cors==3.0.10
idna==3.4
itsdangerous==2.1.2
Jinja2==3.1.2
MarkupSafe==2.1.2
mysql-connector-python==8.0.32
oauthlib==3.2.2
protobuf==3.20.3
pycparser==2.21
PyJWT==2.6.0
requests==2.28.2
six==1.16.0
urllib3==1.26.14
Werkzeug==2.2.2