https://github.com/ryancoll/tern-stack
https://github.com/ryancoll/tern-stack
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ryancoll/tern-stack
- Owner: RyanColl
- Created: 2021-11-01T19:49:36.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-15T06:52:26.000Z (over 4 years ago)
- Last Synced: 2025-02-25T21:35:08.902Z (over 1 year ago)
- Language: JavaScript
- Size: 687 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TERN Stack
#### T => Tailwind
#### E => Express
#### R => Redis
#### N => Nextjs
## Steps
1. Git Clone https://github.com/RyanColl/terrn-stack.git
2. cd terrn-stack
3. npm i
4. Add a folder called secrets, then a file called secrets.js
```mkdir secrets``` ```touch secrets.js```
5. Go to [Upstash](https://console.upstash.com/) and make an account and create a new database.
6. Go to your new database and find the string under details that starts with rediss://:
7. in secrets.js add the following code, using the previous string inside the key
```js
module.exports = {key: 'rediss://:putyourcodehere'}
```