Skip to content

Commit a5d55b4

Browse files
Renamed Components folder as Pages and Added New SplashScreen and Auth Screen (#9)
* Renamed Components folder as Pages and Added New SplashScreen and Auth Screen * Updated README.md
1 parent ade9c4d commit a5d55b4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1025
-709
lines changed

.env

Lines changed: 0 additions & 3 deletions
This file was deleted.

.env-example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
NEXT_PUBLIC_APP_URL=http://localhost:1420
2+
3+
DATABASE_URL="file:./dev.db"
4+
AUTH_SECRET="mysecret"

.idea/misc.xml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ npm run tauri:build
8484
- Customizable theme
8585

8686

87-
## Requirements Used
87+
## Stack Used
8888

8989
- [Node.js](https://nodejs.org/en/) (v14 or later)
9090
- [npm](https://www.npmjs.com/) (v7 or later) or [pnpm](https://pnpm.io/) (v6 or later)
@@ -109,6 +109,9 @@ npm run tauri:build
109109
- [pipenv](https://pypi.org/project/pipenv/) (v2021.5 or later)
110110
- [Flask](https://flask.palletsprojects.com/) (v2.0 or later) or [FastAPI](https://fastapi.tiangolo.com/) (v0.68 or later)
111111
- [Scss](https://sass-lang.com/) (v1.37 or later)
112+
- [PostCSS](https://postcss.org/) (v8.3 or later)
113+
- [Lottie](https://lottiefiles.com/) (v5.7 or later)
114+
112115

113116
## Customization
114117

auth.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import type { NextAuthConfig } from 'next-auth';
2+
3+
export const authConfig = {
4+
pages: {
5+
signIn: '/login',
6+
},
7+
} as NextAuthConfig;

package-lock.json

Lines changed: 169 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)