Web portfolio for MLH Fellowship Production Engineering track using the Flask-blog template.
This blog has an about me, portfolio, and contact section. In the about me section, you can input any information about yourself that you believe is relevant to get to know you. In the portfolio section, you can display images of your work and a description of it. The images are linked so that you can attach a link to where your projects can be viewed in full. The contact section is so that people can take action after viewing your website, instead of it being a one-sided interface.
Make sure you have python3 and pip installed
Create and activate virtual environment using virtualenv
$ python -m venv python3-virtualenv
$ source python3-virtualenv/bin/activateUse the package manager pip to install all dependencies
pip install -r requirements.txtCreate a .env file using the example.env template
Start flask development server
$ export FLASK_ENV=development
$ flask run- Implement functionality of contact form (make it so that the message is stored)
- Look for more opportunities to incorporate Flask (for example, using a database to store Portfolio information)
- Leeia Isabelle (leeiaisabelle)
- Nicole Souydalay (nicolesouydalay)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.