Skip to content

Latest commit

 

History

History
80 lines (66 loc) · 2.93 KB

README.md

File metadata and controls

80 lines (66 loc) · 2.93 KB

Viiteri is a user-friendly BibTeX reference management tool designed for managing academic sources and integrating them into LaTeX documents. It supports various reference types, including articles and books.

Specs · Live Demo

Preview

Preview

Running locally

  1. Ensure Poetry is Installed:

    • If you don't have Poetry installed, install it from the official Poetry website: Poetry Installation.
  2. Clone the Viiteri Repository:

    • Open a terminal or command prompt and run the following command:
      git clone https://github.com/your-username/viiteri.git
      
    • Navigate to the created directory
      cd viiteri
      
  3. Install Dependencies Using Poetry

    • Install dependencies by running the command:
      poetry install
      
  4. Initialize the Database

    • Ensure PostgreSQL is installed. If not, install it from the website: PostgreSQL Downloads
    • Initialize the database by running the command:
      poetry run invoke init-db
      
  5. Run the Application in Debug Mode

    • Start Viiteri in debug mode by running the command:
      poetry run invoke debug
      
  6. Open the Website

    • Once the application is running, access it in your browser at:
      http://localhost:5001
      

Development (In Finnish)