Skip to content

Commit

Permalink
Merge pull request #1 from jsooter/master
Browse files Browse the repository at this point in the history
update to latest
  • Loading branch information
alanswx authored Jan 17, 2018
2 parents b749d3c + 3e3aa1f commit ab30c40
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,20 @@ If you already have a FLask application setup you will not need FlaskApp.py, jus

For security reasons it is recommended you replace static/RichFilemanager/index.html with an empty index.html if you don't intend to use it. Also you should implement your own user authentication/ authorization system. Authentication and authorization in Flask is well documented and beyond the scope of this documentation.

**It is up to you to manage file system access on your server.** The application should be running with limited file system access. **DO NOT** run as root or with sudo!

### Installation ###
```bash
source flaskfilemanagerenv/bin/activate
export FLASK_APP=FlaskApp.py
python3 -m flask run
Open your browser and go to http://localhost:5000/files/filemanager
```

### Other Considerations ###

#### Werkzeug Development Server ####
Consider using Flask with a production web server.
From the [Werkzeug](http://werkzeug.pocoo.org/docs/0.14/serving/) site:
> The development server is not intended to be used on production systems. It was designed especially for development purposes and performs poorly under high load. For deployment setups have a look at the [Application Deployment](http://werkzeug.pocoo.org/docs/0.14/deployment/#deployment) pages.

0 comments on commit ab30c40

Please sign in to comment.