diff --git a/README.md b/README.md new file mode 100644 index 00000000..fbf72b68 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# Project Structure + +project-root/
+├── src/
+│ ├── app/
+│ │ ├── components/
+│ │ │ └── ... # Other components
+│ │ ├── services/
+│ │ │ └── ... # Other services
+│ │ └── ...
+│ │
+│ ├── assets/
+│ │ └── ... # Static assets like images, styles, etc.
+│ │
+│ ├── environments/
+│ │ ├── environment.ts
+│ │ ├── environment.prod.ts
+│ │ └── ...
+│ │
+│ └── sl-auth-library/
+│ ├── src/
+│ │ ├── lib/
+│ │ │ ├── components/
+│ │ │ │ └── ... # Authentication components
+│ │ │ ├── services/
+│ │ │ │ └── ... # Authentication services
+│ │ │ └── ...
+│ │ ├── public_api.ts # Exported components and services
+│ │ └── ... +│ └── ...
+│
+├── angular.json
+├── package.json
+└── ...