Skip to content

Commit c7ca29f

Browse files
committed
Add Flask Scaffolder Project.
1 parent d833ddc commit c7ca29f

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ SMTP_PORT=587
5353

5454
### Running Dev Locally
5555
1. Open a terminal shell and run `make start-server-dev`
56-
2. Open a second terminal and run `start-portfolio-dev`
56+
2. Open a second terminal and run `make start-portfolio-dev`
5757
3. Access web portfolio via `http://localhost:4000`
5858
4. Stop locally started app by press Ctrl + C within both terminals
5959

portfolio/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 2.1.0
4+
* Add Python Scaffolder Project.
5+
36
## 2.0.2
47
* Update fetch endpoint.
58

portfolio/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.2
1+
2.1.0
801 KB
Loading

portfolio/src/sections/Projects/Projects.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import styles from './ProjectsStyles.module.css';
22
import portfolio from '../../assets/web-portfolio-v2.png';
33
import csvMerger from '../../assets/csv-merger-api.png'
4+
import flaskScaffolder from '../../assets/flask-api-scaffolder.png';
45
import investo from '../../assets/Investo-Manifesto-v2.png';
56
import ProjectCard from '../../common/ProjectCard';
67

@@ -26,6 +27,12 @@ function Projects() {
2627
h3="CSV Merger API"
2728
p="Merge CSV files"
2829
/>
30+
<ProjectCard
31+
src={flaskScaffolder}
32+
link="https://github.com/jonepl/api-scaffolder"
33+
h3="API Scaffolder"
34+
p="Generate APIs using Flask"
35+
/>
2936
</div>
3037
</section>
3138
);

0 commit comments

Comments
 (0)