https://github.com/luandro/community-tools
A list of recommended digital tools that are used by communities using AirTable
https://github.com/luandro/community-tools
Last synced: over 1 year ago
JSON representation
A list of recommended digital tools that are used by communities using AirTable
- Host: GitHub
- URL: https://github.com/luandro/community-tools
- Owner: luandro
- Created: 2022-11-22T13:28:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T22:51:18.000Z (over 3 years ago)
- Last Synced: 2025-01-11T19:39:50.952Z (over 1 year ago)
- Language: Vue
- Homepage: https://community-tools.vercel.app/
- Size: 396 KB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Community Tools Viewer
You'll need a [Airtable API Token](https://airtable.com/create/tokens) to run the app.
For using Nuxt look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
```
After that copy and edit the env file with your API token:
```
cp .env.example .env
```
## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```
## Production
Build the application for production:
```bash
npm run build
```
Locally preview production build:
```bash
npm run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.