Skip to content

Latest commit

 

History

History
81 lines (53 loc) · 1.12 KB

README.md

File metadata and controls

81 lines (53 loc) · 1.12 KB

CPSC471-group-project

Table of Contents

  1. Team Members
  2. Technologies
  3. Instructions

Team Members

Technologies

  • Language: Python
  • Version Control: Git / GitHub
  • Communication: Discord

Instructions

Dependencies:

pip install bcrypt

Start server:

python3 server.py <port>

Example: python3 server.py 12000

Start client:

python3 client.py <IP address> <port>

Example: python3 client.py 127.0.0.1 12000

For admin access:

  • Username: admin
  • Password: admin

For user access:

  • Username: user1
  • Password: password1

FTP Client Commands

Download a file from the server

ftp> get <filename>

Upload a file to the server

ftp> put <filename>

List files on the server

ftp> ls

Disconnect from the server and exit

ftp> quit