diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..1710adb --- /dev/null +++ b/.env.example @@ -0,0 +1,17 @@ +NEXTAUTH_SECRET=your-very-long-secret-here + +# GitHub OAuth Configuration +# Create OAuth app at: https://github.com/settings/applications/new +# Homepage URL: http://localhost:3000 +# Callback URL: http://localhost:3000/auth/github/callback +GITHUB_CLIENT_ID=your-github-client-id +GITHUB_CLIENT_SECRET=your-github-client-secret + + + +# Database Configuration +DATABASE_URL=sqlite:./data/invicanvas.db + +# Server Configuration +NODE_ENV=development +PORT=3000 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a0676ae --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +node_modules +dist +*.log +.env +.env.local +.env.production +.DS_Store +client/node_modules +client/dist +client/.env +client/.env.local +client/.env.production +server/data +*.db +*.db-shm +*.db-wal +logs/ +*.log diff --git a/client/index.html b/client/index.html new file mode 100644 index 0000000..6923ea8 --- /dev/null +++ b/client/index.html @@ -0,0 +1,13 @@ + + +
+ + + +