Blog Project: A project presenting some of my skills in web development
- React
- Python
- HTML5
- Scss
- Bootstrap
- Stytch
- MongoDB
- Argon dashboard (https://github.com/app-generator/flask-argon-dashboard)
- Bloggy template (https://www.free-css.com/free-css-templates/page276/bloggy)
UNZIP the sources or clone the private repository. After getting the code, open a terminal and navigate to the working directory, with product source code.
Install modules via
VENV
$ virtualenv env
$ source env/bin/activate
$ pip3 install -r requirements.txt
Set Up Flask Environment
$ export FLASK_APP=run.py
$ export FLASK_ENV=development
Start the app
$ flask run
At this point, the app runs at http://127.0.0.1:5000/
.
Install modules via
VENV
(windows)
$ virtualenv env
$ .\env\Scripts\activate
$ pip3 install -r requirements.txt
Set Up Flask Environment
$ # CMD
$ set FLASK_APP=run.py
$ set FLASK_ENV=development
$
$ # Powershell
$ $env:FLASK_APP = ".\run.py"
$ $env:FLASK_ENV = "development"
Start the app
$ flask run
At this point, the app runs at http://127.0.0.1:5000/
.
UNZIP the sources or clone the private repository. After getting the code, open a terminal and navigate to the working directory, with product source code.
Install and run modules via
npm
$ npm install
$ npm start