Skip to content

Eine Cloud für das eigene Netzwerk in Python geschrieben

Notifications You must be signed in to change notification settings

Lvc4/Home-Cloud-Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Home Cloud written in Python3

Installation

1.

$ pip install -r requirements.txt

2.

You have to change the "host" variable to your locale ipadress at the end of the file.

app.run(
   debug=False,
   host= '192.168.180.40',# set your ip here
   threaded=True,
   port = 80
   )

3.

You should change the "mypassword" variable to a secret password.

  app = Flask(__name__)
  mypassword = 'password'#set your password here
  app.config['UPLOAD_FOLDER'] = 'uploads'

Run your server

$ python server.py

Then open your browser and use your IP as URL.

Features

  • File Upload
  • Delete files
  • Login
  • List files

About

Eine Cloud für das eigene Netzwerk in Python geschrieben

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published