Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcianosr/devvoted
The poll app 2.0
https://github.com/marcianosr/devvoted
Last synced: 1 day ago
JSON representation
The poll app 2.0
- Host: GitHub
- URL: https://github.com/marcianosr/devvoted
- Owner: marcianosr
- Created: 2024-03-20T12:16:44.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-05-14T10:35:16.000Z (8 months ago)
- Last Synced: 2024-10-31T11:39:51.767Z (2 months ago)
- Language: TypeScript
- Homepage: https://devvoted.vercel.app
- Size: 380 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Devvoted
A fresh 🆕 poll app will come here, keep an eye on this repo as code will appear!
## Development Setup
### Setup NodeJS (JavaScript runtime)
1. Install [asdf](https://asdf-vm.com/): `brew install asdf`
2. Install the _nodejs_ plugin: `asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git`
3. Check project version of node: `cat .tool-versions`
4. Install [nodejs](https://nodejs.org/en): `asdf install nodejs `### Setup Yarn (package manager)
You need [Yarn](https://yarnpkg.com/getting-started/install) 4+:
```
corepack enable
asdf reshim nodejs
```### Install dependencies
```
yarn install
```### Configure .env file
Copy the `.env.example` to `.env` and fill in the blanks
## Running application (for development)
use 2 terminals:
```sh
yarn emulate:firestore
``````sh
yarn dev
```## Viewing components
You can view the styled components through storybook:
```sh
yarn storybook:ui
```