Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 981 Bytes

README.md

File metadata and controls

47 lines (36 loc) · 981 Bytes

flask-react-template

Full stack website template with Python (Flask) and JavaScript (React)

Setup

Clone this repo

git clone https://github.com/victor-iyiola/flask-react-template.git

Or download the project here

Then change your working directory as show below

cd flask-react-template

Install python dependencies

pip install --upgrade pip
pip install --upgrade -r requirements.txt

Install npm dependencies

cd flask_react_template/client/static
npm install

After installing the dependencies. You can now start webpack (to compile all client files into a single javascript file. bundle.js)

For development

npm run watch

For Production

npm run build

Excellent. Now it's time to start the Python (flask) web server.

cd <flask-react-template>
python run.py --debug=True