https://github.com/bwhtdev/bp
A scaleable blog app
https://github.com/bwhtdev/bp
graphql prisma radix-ui railway-app react redwoodjs tailwindcss typescript
Last synced: 7 months ago
JSON representation
A scaleable blog app
- Host: GitHub
- URL: https://github.com/bwhtdev/bp
- Owner: bwhtdev
- Created: 2023-07-27T00:09:11.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-31T23:56:33.000Z (about 2 years ago)
- Last Synced: 2025-01-22T11:24:15.924Z (9 months ago)
- Topics: graphql, prisma, radix-ui, railway-app, react, redwoodjs, tailwindcss, typescript
- Language: TypeScript
- Homepage: https://bp-app.netlify.app/
- Size: 1.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bp / Boilerplate App Code
### Setup Instructions
###### Install
```
gh repo clone bradscottwhite/bp
mv bp ***app-name***
cd ***app-name***
yarn install
```###### API Configuration:
Login to Railway.app and start Postgres db and copy DB_URL. (Use CLI???)
```
yarn rw g secrettouch .env
nvim .env
```
~/.env:
```
DATABASE_URL=***your-db-url-from-railway***
SESSION_SECRET=***your-generated-session-secret***
``````
yarn rw prisma migrate dev
```###### Run Locally
(Optional/only for local testing)
Change ports in ~/redwood.toml```
yarn rw dev
```###### Deploy
Delete Git repo then create Git repo
``` rm -rf .git ```Import app from GitHub to Netifly
Also add env vars from ~/.env file.
Finally change name and deploy.