https://github.com/ceramicstudio/fluence-demo
Repo for EthDenver2024 Fluence demo app
https://github.com/ceramicstudio/fluence-demo
Last synced: 18 days ago
JSON representation
Repo for EthDenver2024 Fluence demo app
- Host: GitHub
- URL: https://github.com/ceramicstudio/fluence-demo
- Owner: ceramicstudio
- Created: 2024-02-13T18:46:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T02:14:17.000Z (about 2 years ago)
- Last Synced: 2025-03-01T17:47:47.923Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 20.8 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EthDenver Scavenger Hunt App
Private repository for our EthDenver2024 Scavenger Hunt application.
## Getting Started
1. Install your dependencies:
```bash
npm install
```
2. Duplicate the existing .env.example file and rename it `.env`
3. Create a secret key:
```bash
npm run createKey
```
Take the logged string output from your and assign it to the `SECRET_KEY` value in your .env file
4. Assign a live PostgreSQL connection string to your `STRING` value in your .env file
5. Run the application in developer mode:
```bash
npm run dev
```
6. Uncomment the code found in /src/pages/api/table.ts and prime your PostgreSQL database by making a fetch request to `http://localhost:3000/api/table`
7. Once complete, you are ready to use the application