Git Product home page Git Product logo

flask-react-app's Introduction

flask-react-app

Flask + ReactJS application template hosted on NGINX

setting up and configuring nginx

sudo add-apt-repository ppa:nginx/stable // app latest nginx repo sudo apt-get install nginx // install nginx sudo service nginx start // start nginx server sudo service nginx stop // stop nginx server

sudo apt-get purge nginx nginx-common // completely remove nginx sudo apt-get autoremove // remove unused dependencies

sudo rm /etc/nginx/sites-enabled/default // remove default page sudo xed /etc/nginx/sites-available/example.com // create demo app


example.com:

// serve flask app in debug mode

server { server { listen 8080;

    location / {
	    proxy_pass http://127.0.0.1:8000/;
    }
}

}

// serve react app

server { listen 8080;

root /var/www/build;             // build folder contains compiled react app
server_name localhost:8080
index index.html index.htm;

}


create a symbolic link

sudo ln -s /etc/nginx/sites-available/example.com /etc/nginx/sites-enabled/example.com sudo service nginx restart

creating flask app in virtual environment

sudo apt-get install python3-venv // install python3 virtual environment python3 -m venv example_env // create virtual environment source example_env/bin/activate // activate virtual environment deactivate // deactivate venv while in session pip install flask // install flask pip install uwsgi // install uWSGI module

flask-react-app's People

Contributors

maksimkorzh avatar

Stargazers

Mohammed Hasanul Chowdhury avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.