Skip to content

Commit

Permalink
Create Project Structure.md (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
siri-chandana-macha authored Nov 6, 2024
1 parent a4b8ff7 commit fa9eb65
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions Project Structure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
## Project Structure 📂
```
FitFlex
├──.github
│ ├──ISSUE_TEMPLATE
│ ├──bug_report.yml
│ ├──custom.md
│ ├──documentation-update.yml
│ └── feature_request.yml
├──context
│ └── blogContext.jsx
├──diet-recommendation-api
│ └──app.py
├──public
│ ├──robot.png
│ ├──robots.txt
│ ├──sitemap.xml
│ └──vite.svg
├──src
│ ├──assets
│ ├──components
│ ├──context
│ ├──data
│ ├──fonts
│ ├──lib
│ ├──styles
│ ├──views
│ ├──App.css
│ ├──App.jsx
│ ├──index.css
│ ├──main.jsx
│ ├──metadata.js
│ └──root.jsx
├──.env.example
├──.eslintrc.cjs
├──.gitignore
├──CODE_OF_CONDUCT.md
├──CONTRIBUTING.md
├──Dockerfile
├──LICENSE
├──README.md
├──SECURITY.md
├──components.json
├──generate-sitemap.js
├──index.html
├──netlify.toml
├──package.json
├──postcss.config.js
├──tailwind.config.js
├──tsconfig.app.json
├──tsconfig.json
├──tsconfig.node.json
└──vite.config.js
```

0 comments on commit fa9eb65

Please sign in to comment.