Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/merelinguist/strove-old
https://github.com/merelinguist/strove-old
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/merelinguist/strove-old
- Owner: merelinguist
- Created: 2021-12-03T15:41:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-22T11:02:03.000Z (almost 3 years ago)
- Last Synced: 2024-11-29T13:53:30.056Z (25 days ago)
- Language: TypeScript
- Homepage: https://strove.co
- Size: 4.57 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Strove
A friendly and smart learning app.
[→ **Try using Strove now**](https://strove.co)
## Stack
- [Multi-region Fly app deployment](https://fly.io/docs/reference/scaling/) with [Docker](https://www.docker.com/)
- [Multi-region Fly PostgreSQL Cluster](https://fly.io/docs/getting-started/multi-region-databases/)
- Healthcheck endpoint for [Fly backups region fallbacks](https://fly.io/docs/reference/configuration/#services-http_checks)
- [GitHub Actions](https://github.com/features/actions) for deploy on merge to production and staging environments
- Email/Password Authentication with [cookie-based sessions](https://remix.run/docs/en/v1/api/remix#createcookiesessionstorage)
- Database ORM with [Prisma](https://prisma.io)
- Styling with [Tailwind](https://tailwindcss.com/)
- End-to-end testing with [Cypress](https://cypress.io)
- Local third party request mocking with [MSW](https://mswjs.io)
- Unit testing with [Vitest](https://vitest.dev) and [Testing Library](https://testing-library.com)
- Code formatting with [Prettier](https://prettier.io)
- Linting with [ESLint](https://eslint.org)
- Static Types with [TypeScript](https://typescriptlang.org)## Development
- Start the Postgres Database in [Docker](https://www.docker.com/get-started):
```sh
npm run docker
```- Initial setup:
```sh
npm run setup
```- Start dev server:
```sh
npm run dev
```This starts the app in development mode, rebuilding assets on file changes.
The database seed script creates a new user with some data you can use to get started:
- Email: `[email protected]`
- Password: `pass`If you’d prefer not to use Docker, you can also connect to a development database.
### Relevant code: