Skip to content

Latest commit

 

History

History
97 lines (68 loc) · 1.44 KB

README.md

File metadata and controls

97 lines (68 loc) · 1.44 KB

IdeaAtlas

What is it ?

IdeaAtlas is (will be) Brain storming visualisation web tool for creating knowledge graphs with help of Chat GPT

About Project

  • School project for my final 2 semesters at Gymnasium Arabska
  • school year 2024/25
  • Vue

Linux Setup

clone this repo

git clone https://github.com/gyarab/2024-4e-prochazka-IdeaAtlas.git

install bun

curl -fsSL https://bun.sh/install | bash

go to the project directory

cd 2024-4e-prochazka-IdeaAtlas
cd idea-atlas

install dependencies:

bun install

Setup for windows

clone this repo

git clone https://github.com/gyarab/2024-4e-prochazka-IdeaAtlas.git

install bun (on windows)

powershell -c "irm bun.sh/install.ps1 | iex"

go to the project directory

cd 2024-4e-prochazka-IdeaAtlas
cd idea-atlas

install dependencies:

bun install

Development Server

Start the development server on http://localhost:3000:

# bun
bun run dev

Production

Build the application for production:

# bun
bun run build

Locally preview production build:

# bun
bun run preview

Check out the deployment documentation for more information.

Project structure guide

bun.lockb

is a lock file created by the Bun JavaScript runtime to capture the exact versions of all dependencies installed in a project.