Keep track your fund investments
Index
-
Production + CI/CD + DB
-
MongoDB
-
APIs creation: Flask-RESTful
-
API securing
-
API errors
-
API documentation: flask-swagger-ui
-
Docker
-
Web in different languages
-
Background works
-
Remembering Password
git clone https://github.com/pjfernandecabo/myInvestmentX.git
Later, I am going to tag the main parts and you could download them
git checkout tags/<tag> -b <branch>
i.e.
git checkout tags/APIS -b API
it is useful write them in .venv/bin/activate
export FLASK_APP="entrypoint"
Next are convenient but I do not use yet
export FLASK_ENV="development"
export APP_SETTINGS_MODULE="config.local"
set "FLASK_APP=entrypoint"
set "FLASK_ENV=development"
set "APP_SETTINGS_MODULE=config.local"
All the libraries you need are in
pip install -r requirements.txt
cd myFinanceX
flask --app entrypoint run --debug --port 8008
or
flask run --debug --port 8008