Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```