Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nwesterhausen/events-webapp
This is a website which provides collaboration and reference for group-planned events
https://github.com/nwesterhausen/events-webapp
Last synced: 6 days ago
JSON representation
This is a website which provides collaboration and reference for group-planned events
- Host: GitHub
- URL: https://github.com/nwesterhausen/events-webapp
- Owner: nwesterhausen
- Created: 2022-07-09T15:32:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T17:46:52.000Z (about 1 year ago)
- Last Synced: 2024-12-29T02:34:59.971Z (8 days ago)
- Language: TypeScript
- Homepage:
- Size: 342 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Events Webapp
An app to help keep track of upcoming events (and band practice sessions).
## Running Production
### Env File Requirements
This app uses a database to keep track of users and event details. You need to provide database details into a `.env` file.
| .env key | description |
| -------- | ----------------------------------- |
| DB_CONN | PSQL connection string for database |If DB_CONN isn't filled with a pg connection string, the app will use sqlite instead.
### Building
The app needs to be built. Run these commands:
```sh
pnpm install
pnpm build
```### Running
To run production:
```sh
pnpm start:prod
```