Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.02 KB

local.md

File metadata and controls

52 lines (38 loc) · 1.02 KB

Development

Want to contribute? Great!

How to install the Meilix-Generator on local machine

Deploying Locally

Star the repo and fork it and clone the forked one.

Open your favorite Terminal and run these commands.

Get started by installing the virtual environment

$ sudo pip install virtualenv

cd into the cloned repository and start the virtual environment

$ virtualenv venv

activate the virtual environment

$ source venv/bin/activate

Building for source

install the basic requirements

$ sudo pip install -r requirements.txt

adding application

$ export FLASK_DEBUG=1 FLASK_APP=app.py

run the application

$ flask run

Verify the deployment by navigating to your server address in your preferred browser.

127.0.0.1:5000

Note: see more here about token and script

Have an eye on the terminal to know about the process.

Look at heroku installation to test and deploy the build