Skip to content

Commit bbdd33a

Browse files
committed
initial commit
0 parents  commit bbdd33a

File tree

76 files changed

+6647
-0
lines changed

Some content is hidden

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

76 files changed

+6647
-0
lines changed

.env

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Environment variables declared in this file are automatically made available to Prisma.
2+
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
3+
4+
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
5+
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
6+
7+
DATABASE_URL="mysql://admin:12345678@localhost:3306/asco"
8+
PORT=7892
9+
TESTING_PORT=8889
10+
HOST=127.0.0.1
11+
JWT_SECRET="^[Nk&S,!;5;N9sUFt#,GBlsWdKB,YPaMyTY]zv4SCkNd}aioJ#"
12+
ISSUER=api.jj

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
# Keep environment variables out of version control
3+
# .env
4+
prisma/migrations
5+
dist/

0 commit comments

Comments
 (0)