This is my personal portfolio website, built using Flask. It showcases my projects, skills, and interests. The website is static, meaning all the content is pre-generated and served as static HTML pages.
- Flask web framework
- HTML, CSS, and JavaScript for front-end
- Bootstrap for styling
- Git for version control
To set up this project locally, follow these steps:
- Clone the repository to your local machine.
- Install flask if not done
- Run the Flask development server using python app.py.
$ git clone https://github.com/nilay-2/Portfolio_website.git
$ cd Portfolio_website
$ pip install flask
$ flask run
The website should now be accessible at http://localhost:5000.
The project is organized as follows:
├── app.py # Flask app
├── static/ # Static assets (CSS, JavaScript, images)
├── templates/ # HTML templates
└── README.md # This README file
The app.py file contains the Flask app code, which serves the static HTML pages and assets. The static directory contains CSS, JavaScript, and image files used by the website. The templates directory contains the Jinja2 templates used to generate the HTML pages.
To deploy this website, you can use a cloud hosting provider like Heroku or AWS Elastic Beanstalk. Simply create an account, create a new application, and follow the instructions to deploy the website.
If you find a bug or want to suggest an improvement, please create a new issue or pull request. I'm always happy to receive feedback and contributions!