Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
5e92516
Created node.js.yml action
bsaranga Oct 18, 2024
aa47926
added working directory to the actions spec
bsaranga Oct 18, 2024
5efa395
specified the cache dependency path for the node.js build action
bsaranga Oct 18, 2024
28f4a00
Merge pull request #1 from tracet2t/github-actions-maintenance
bsaranga Oct 18, 2024
b4f4547
86b2j5p5v-venue-cards-poc: Venue cards with image carousel POC
LakshananS Oct 21, 2024
07d61fd
86b2j5p5v-venue-cards-poc: Changed default type name
LakshananS Oct 21, 2024
7efb0e8
86b2j5p5v-venue-cards-poc: Updated file structure
LakshananS Oct 22, 2024
8f5fc5c
86b2j5p5v-venue-cards-poc: Updated filea and folders name
LakshananS Oct 22, 2024
c543e8d
86b2j5p5v-venue-cards-poc: Updated code for carousel component can be…
LakshananS Oct 23, 2024
e73663f
Merge pull request #3 from tracet2t/86b2j5p5v-venue-cards-poc
bsaranga Oct 23, 2024
a414493
86b2kuqe7-database-creation: Craeted databse using prisma and compile…
LakshananS Oct 30, 2024
f12e870
Your commit message
LakshananS Oct 30, 2024
f74ac62
86b2kuqe7-database-creations: Separate Database Project and Generate …
LakshananS Nov 1, 2024
1ba6de2
86b2kuqe7-database-creation: Updated docker file
LakshananS Nov 1, 2024
c089878
feat: Create filters for locations and venu type of reservation
Vihari7 Nov 1, 2024
5edab4e
86b2kuqe7-database-creation: Added landing image and updated landing …
LakshananS Nov 1, 2024
59e1fb5
Change img to Next Image fromat
LakshananS Nov 1, 2024
a8d5107
Updated Iamge format and added icon images
LakshananS Nov 2, 2024
d2d98e7
Updated pagination for cards
LakshananS Nov 4, 2024
f79b041
Updated database relate to venue cards
LakshananS Nov 11, 2024
6d17d3b
86b2kuqe7-database-creation : Upadated database, vemue card, calendar…
LakshananS Nov 11, 2024
8c4aacc
86b2rcaaf-venue-availability - Updated Guest user view venue availabi…
LakshananS Nov 14, 2024
c85ef92
Updated and pulled from all the branches
LakshananS Nov 18, 2024
0a47bd9
general: Added user session management
LakshananS Nov 20, 2024
f896e4f
general: Resolved build errors
LakshananS Nov 21, 2024
1dacba7
general: Fixed package errors
LakshananS Nov 21, 2024
3ae9256
genenral: Based on the time schedule venue calendar show form
LakshananS Nov 23, 2024
5a39d77
genenral: Based on the time schedule venue calendar show form
LakshananS Nov 23, 2024
b01d4b2
genenral: Based on the time schedule venue calendar show Hourly, Sess…
LakshananS Nov 23, 2024
7bcfe4b
86b2xck0y-google-authentication: User can authenticate with google
LakshananS Nov 24, 2024
dc8088d
Merge branch 'development' into 86b2xck0y-google-authentication
LakshananS Nov 24, 2024
e355d58
86b2xck0y google authentication: Installed prisma client and resolved…
LakshananS Nov 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
15 changes: 15 additions & 0 deletions database/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema

# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings

DATABASE_URL="postgresql://postgres:postgres@localhost:5432/postgres?schema=public"

EMAIL_SERVER_HOST=smtp.gmail.com
EMAIL_SERVER_PORT=587
[email protected]
EMAIL_SERVER_PASSWORD=lrcz vzvy wwpf tfzh
EMAIL_FROM="[email protected]"

AUTH_SECRET="3ZtPGZl+VhD8X+3GDW8TebiwHkKZ4yjYdf9To7O90fE=" # Added by `npx auth`. Read more: https://cli.authjs.dev
38 changes: 38 additions & 0 deletions database/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
version: '3.8'

services:
postgres:
container_name: pgdb
image: postgres
restart: always
volumes:
- ./init:/docker-entrypoint-initdb.d
- postgres:/var/lib/postgresql/data
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_MULTIPLE_DATABASES: test,postgres
ports:
- "5432:5432"

pgadmin:
container_name: pgadmin
image: dpage/pgadmin4:latest
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: admin
ports:
- "8080:80"
networks:
- mynetwork
depends_on:
- postgres

volumes:
postgres:
driver: local

networks:
mynetwork:
driver: bridge
12 changes: 12 additions & 0 deletions database/node_modules/.bin/acorn

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions database/node_modules/.bin/acorn.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions database/node_modules/.bin/acorn.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions database/node_modules/.bin/nanoid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions database/node_modules/.bin/nanoid.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions database/node_modules/.bin/nanoid.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions database/node_modules/.bin/prisma

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions database/node_modules/.bin/prisma.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions database/node_modules/.bin/prisma.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions database/node_modules/.bin/ts-node

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions database/node_modules/.bin/ts-node-cwd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions database/node_modules/.bin/ts-node-cwd.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions database/node_modules/.bin/ts-node-cwd.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions database/node_modules/.bin/ts-node-esm

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions database/node_modules/.bin/ts-node-esm.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions database/node_modules/.bin/ts-node-esm.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions database/node_modules/.bin/ts-node-script

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading