GitClassic
Feed
Explore
Random
Go Pro
Sign in
leahincom
/
remix-blog
Code
/
Commits
/ 56cae53
initial remix setup
Lea.lah
committed on Jul 16, 2023, 02:06 PM
Showing
68
changed files
+2840 additions
-0 deletions
A
.dockerignore
+7
A
.env.example
+2
A
.eslintrc.js
+22
A
.eslintrc.repo.js
+32
A
.gitignore
+17
A
.gitpod.Dockerfile
+9
A
.gitpod.yml
+48
A
.npmrc
+1
A
.prettierignore
+7
A
Dockerfile
+61
A
LICENSE.md
+22
A
app/db.server.ts
+9
A
app/entry.client.tsx
+18
A
app/entry.server.tsx
+120
A
app/models/note.server.ts
+52
A
app/models/post.server.ts
+16
A
app/models/snack.server.ts
+52
A
app/models/user.server.ts
+62
A
app/root.tsx
+42
A
app/routes/_index.tsx
+147
A
app/routes/healthcheck.tsx
+25
A
app/routes/join.tsx
+166
A
app/routes/login.tsx
+175
A
app/routes/logout.tsx
+8
A
app/routes/notes.$noteId.tsx
+70
A
app/routes/notes._index.tsx
+12
A
app/routes/notes.new.tsx
+109
A
app/routes/notes.tsx
+70
A
app/routes/posts.$slug.tsx
+27
A
app/routes/posts._index.tsx
+30
A
app/routes/posts.admin._index.tsx
+11
A
app/routes/posts.admin.new.tsx
+88
A
app/routes/posts.admin.tsx
+33
A
app/session.server.ts
+97
A
app/singleton.server.ts
+13
A
app/tailwind.css
+3
A
app/utils.test.ts
+13
A
app/utils.ts
+71
A
cypress.config.ts
+27
A
cypress/.eslintrc.js
+6
A
cypress/e2e/smoke.cy.ts
+51
A
cypress/fixtures/example.json
+5
A
cypress/support/commands.ts
+95
A
cypress/support/create-user.ts
+48
A
cypress/support/delete-user.ts
+37
A
cypress/support/e2e.ts
+15
A
cypress/tsconfig.json
+28
A
fly.toml
+51
A
mocks/README.md
+7
A
mocks/index.js
+17
A
package.json
+88
A
postcss.config.js
+6
A
prisma/migrations/20220713162558_init/migration.sql
+31
A
prisma/migrations/20230715090830_create_post_model/migration.sql
+8
A
prisma/migrations/migration_lock.toml
+3
A
prisma/schema.prisma
+47
A
prisma/seed.ts
+98
A
public/favicon.ico
A
remix.config.js
+16
A
remix.env.d.ts
+2
A
remix.init/gitignore
+10
A
remix.init/index.js
+294
A
remix.init/package.json
+12
A
start.sh
+17
A
tailwind.config.ts
+9
A
test/setup-test-env.ts
+4
A
tsconfig.json
+26
A
vitest.config.ts
+15
Browse files at this commit โ