Skip to content

Development

Marcin Jałocha edited this page Nov 23, 2024 · 4 revisions

Database

In order to use the website with full features, you need to set up database server.

To do so, you have two options:

  1. https://www.apachefriends.org/index.html
  2. https://www.wampserver.com/en/download-wampserver-64bits/

Steps to configure this project with one of the apps from above

  • Set up .env file to use your database credentials (connection string)

Navigate to shibaac project directory and execute following commands to set up database:

npx prisma db push

Seed the database (OPTIONAL)

npx prisma db seed 

Development

First clone repository:

git clone https://github.com/nekiro/shibaac.git

Download Node.js https://nodejs.org/en/download/

Install dependencies:

cd shibaac
npm i

Adjust .env located at root of the project and then run local development server

npm run dev
Clone this wiki locally