https://github.com/fairdataihub/posters-science-survey
https://github.com/fairdataihub/posters-science-survey
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/fairdataihub/posters-science-survey
- Owner: fairdataihub
- Created: 2026-03-12T23:18:47.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-05-19T17:36:42.000Z (about 2 months ago)
- Last Synced: 2026-05-19T20:57:32.336Z (about 2 months ago)
- Language: Vue
- Homepage: https://posters-science-survey.vercel.app
- Size: 470 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Nuxt Starter
## Getting started
### Prerequisites/Dependencies
You will need the following installed on your system:
- [mise](https://mise.jdx.dev) (manages Node.js and other tools)
- Docker
### Setup
1. Clone the repository
```bash
git clone https://github.com/fairdataihub/nuxt-starter.git
```
2. Install Node.js and tools via mise
```bash
mise install
```
3. Install the dependencies
```bash
pnpm install
```
4. Add your environment variables. An example is provided at `.env.example`
```bash
cp .env.example .env
```
5. Start the development server
```bash
pnpm dev
```
6. Open the application in your browser
```bash
open http://localhost:3000
```
## Development
### Database
The application uses a PostgreSQL database for storing data. You can use Docker to run these services locally.
```bash
docker-compose -f ./dev-docker-compose.yaml up
docker-compose -f ./dev-docker-compose.yaml up -d # if you want the db to run in the background
```
Close the database with:
```bash
docker-compose -f ./dev-docker-compose.yaml down
```
### Prisma
The application uses Prisma to interact with the database.
### UI
The application uses [Nuxt UI](https://ui.nuxt.com) to build the UI components. It also uses [Tailwind CSS](https://tailwindcss.com) for styling.