mirror of
https://github.com/aljazceru/hypergolic.git
synced 2026-01-02 13:14:24 +01:00
42 lines
1.3 KiB
Markdown
42 lines
1.3 KiB
Markdown
# Hypergolic
|
|
A nostrocket client
|
|
|
|
## Pull Requests
|
|
Please only solve ONE problem at a time.
|
|
|
|
Indicate to others that you are working to solve a particular problem by claiming it on nostrocket or commenting on the github issue so that others do not duplicate your work.
|
|
|
|
Pull request should contain only ONE commit that solves exactly ONE problem. The probelm SHOULD be from the github or nostrocket issue tracker (but doesn't have to be).
|
|
|
|
The commit message MUST be a short summary of the problem being solved, usually this should be the same as title of the problem from the github or nostrocket issue tracker.
|
|
|
|
## Style Guide
|
|
Avoid uneccessary whitespace changes. Whitespace changes make it difficult to see what code was really changed.
|
|
|
|
## UX Library
|
|
https://www.shadcn-svelte.com/docs
|
|
|
|
## Getting Paid
|
|
If you want to get paid for working on this project, demonstrate your capability by solving some problems and adhering to the instructions in this readme. After you have 2-3 PR's merged, DM gsovereignty on nostr to have a conversation about paid work.
|
|
|
|
## Developing
|
|
|
|
`npm install`
|
|
|
|
```bash
|
|
npm run dev
|
|
|
|
# or start the server and open the app in a new browser tab
|
|
npm run dev -- --open
|
|
```
|
|
|
|
## Building
|
|
|
|
To create a production version of your app:
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
You can preview the production build with `npm run preview`.
|