These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Every template in the program is based on the design file proposal-generator.drawio
A step by step series of examples that tell you how to get a development env running
- Install virtual environment
pip install virtualenv
- Create virtual environment and activate inside proposal-generator directory according the structure below
virtualenv venv
> On windows -> venv\Scripts\activate
> On linux -> . env/bin/activate
- Install flask library on your virtual environment with pip
pip install flask
Or you can install depedencies based on requirements.txt
pip install -r requirements.txt
- Run this project with terminal or command promt on your virtual environment
python run.py
- Access
localhost:5000according port that created inrun.pySign In with email "admin@admin.com" and password "admin" without ""
- To stop the service of flask project (CTRL + C)
Make sure you have installed Python 3 on your device
* proposal-generator/
|--- app/
| |--- static/ (Template [AdminLTE](https://github.com/ColorlibHQ/AdminLTE.git))
| |--- templates/
| | |--- add-proposal.html
| | |--- base.html
| | |--- customers.html
| | |--- footer.html
| | |--- head.html
| | |--- index.html
| | |--- login.html
| | |--- main-sidebar.html
| | |--- navbar.html
| | |--- proposals.html
| | |--- scripts.html
| |--- __init__.py
| |--- views.py
|--- venv/ (install virtualenv first)
|--- config.py
|--- proposal-generator.drawio
|--- requirements.txt
|--- run.py
- Python 3 - The language programming used
- Flask - The web framework used
- Virtualenv - The virtual environment used
You can clone or download this project
> Clone : git clone https://github.com/irfanialfathwah/proposal-generator.git
- Irfanialfathwah
