https://github.com/fairdataihub/posters-science
A free, open-source platform for sharing and discovering scientific posters with AI-powered metadata extraction.
https://github.com/fairdataihub/posters-science
ai discovery posters science share
Last synced: 5 months ago
JSON representation
A free, open-source platform for sharing and discovering scientific posters with AI-powered metadata extraction.
- Host: GitHub
- URL: https://github.com/fairdataihub/posters-science
- Owner: fairdataihub
- Created: 2025-10-02T00:39:29.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-01-30T23:56:05.000Z (5 months ago)
- Last Synced: 2026-01-31T15:15:00.778Z (5 months ago)
- Topics: ai, discovery, posters, science, share
- Language: Vue
- Homepage: https://posters.science
- Size: 1.82 MB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Posters.science
## Getting started
### Prerequisites/Dependencies
You will need the following installed on your system:
- Node.js
- Yarn
- Docker
- Volta (optional)
### Setup
1. Clone the repository
```bash
git clone https://github.com/fairdataihub/nuxt-starter.git
```
2. Install the dependencies
```bash
yarn install
```
3. Add your environment variables. An example is provided at `.env.example`
```bash
cp .env.example .env
```
4. Start the development server
```bash
yarn dev
```
5. 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.