https://github.com/vandivier/ladderly-3
the home site for the ladderly ecosystem
https://github.com/vandivier/ladderly-3
blitzjs career-development hacktoberfest learn-to-code react typescript
Last synced: over 1 year ago
JSON representation
the home site for the ladderly ecosystem
- Host: GitHub
- URL: https://github.com/vandivier/ladderly-3
- Owner: Vandivier
- Created: 2023-06-19T14:56:26.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-28T05:08:26.000Z (over 1 year ago)
- Last Synced: 2025-02-28T12:41:08.748Z (over 1 year ago)
- Topics: blitzjs, career-development, hacktoberfest, learn-to-code, react, typescript
- Language: TypeScript
- Homepage: https://ladderly.io
- Size: 3.41 MB
- Stars: 15
- Watchers: 5
- Forks: 9
- Open Issues: 136
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
## About
The [Ladderly](https://ladderly.io/) Ecosystem is a community, a set of tools, and an educational program designed to help individuals learn to code and accelerate tech career progression. Check out these other repos for more information:
1. [ladderly-slides](https://github.com/Vandivier/ladderly-slides)
2. [rect](https://github.com/Vandivier/rect)
3. [redyellowgreen](https://github.com/Vandivier/redyellowgreen)
## Getting Started
First, review [docs/SETUP.md](https://github.com/Vandivier/ladderly-3/blob/main/docs/SETUP.md).
Then, install, seed, and run your app in the development mode.
```bash
npm i
npm run seed
npm run dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Updating Checklists
Just change the seed data and reseed with `npm run seed`
## Recommended Tools
The extensions listed in `./.vscode/extensions.json` are recommended.
## Environment Variables
Ensure the `.env.local` file has required environment variables:
```
DATABASE_URL=postgresql://@localhost:5432/ladderly-3
```
Ensure the `.env.test.local` file has required environment variables:
```
DATABASE_URL=postgresql://@localhost:5432/ladderly-3_test
```
## Tests
Runs your tests using Jest.
```
yarn test
```
Blitz comes with a test setup using [Vitest](https://vitest.dev/) and [react-testing-library](https://testing-library.com/).
### Built With
1. [**Blitz.js**](https://blitzjs.com)
2. **ESLint**: It lints your code: searches for bad practices and tell you about it. You can customize it via the `.eslintrc.js`, and you can install (or even write) plugins to have it the way you like it. It already comes with the [`blitz`](https://github.com/blitz-js/blitz/tree/canary/packages/eslint-config) config, but you can remove it safely. [Learn More](https://blitzjs.com/docs/eslint-config).
3. **Husky**: It adds [githooks](https://git-scm.com/docs/githooks), little pieces of code that get executed when certain Git events are triggerd. For example, `pre-commit` is triggered just before a commit is created. You can see the current hooks inside `.husky/`. If are having problems commiting and pushing, check out ther [troubleshooting](https://typicode.github.io/husky/#/?id=troubleshoot) guide. [Learn More](https://blitzjs.com/docs/husky-config).
4. **Prettier**: It formats your code to look the same everywhere. You can configure it via the `.prettierrc` file. The `.prettierignore` contains the files that should be ignored by Prettier; useful when you have large files or when you want to keep a custom formatting. [Learn More](https://blitzjs.com/docs/prettier-config).