Supprimer 'Need.txt'

This commit is contained in:
Filoji 2020-06-29 14:41:49 +02:00
parent 917e87596c
commit 8a5b21f35b
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
Packages:
python3
virtualenv
on Virtual environment
python-dotenv, flask, flask-wtf, flask-sqlalchemy, flask-migrate, flask-login
- - How to install your 'Pycloud' with development environment:
- Install python3 (need python3 in PATH, you can download Python on the Website and check the 'add to PATH') and virtualenv ('pip3 install virtualenv').
- Make sure you have Python on your PATH (Open a terminal and type 'python', if the version is Python 2.x, try 'python3').
- Create your cloud directory and enter in it.
- Create a virtual environment ('python -m venv venv' or 'python3 -m venv venv').
- Set your virtual environment ('virtualenv venv').
- Activate it (Windows: 'venv\Script\activate', others: 'venv/bin/activate').
- Download all others packages ('pip3 install package-name').
- Paste 'Pycloud' project on the directory.
- Create a '.flaskenv' file and write it:
FLASK_APP=Pycloud.py
FLASK_ENV=development
- Initialize your Data Base ('flask db init')
- Start Pycloud ('flask run').
- You've done!