1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 12:49:43 +02:00

Link all scripts to the root package.json, start development servers concurrently

This commit is contained in:
Maksim Eltyshev 2020-04-25 04:57:31 +05:00
parent e0dee1efef
commit 693602698b
4 changed files with 469 additions and 18 deletions

View file

@ -47,34 +47,24 @@ Demo user: demo@demo.demo demo
## Development
Clone the repository and install dependencies:
```
git clone https://github.com/plankanban/planka.git
```
Root folder:
```
cd planka
npm install
```
Server folder:
Create a database and edit `DATABASE_URL` in `.env` file. Then initialize it:
```
npm install
# Create a database and edit DATABASE_URL in .env file
npm run db:migrate
npm run db:seed
npm run start
npm run server:db:init
```
Client folder:
Start the development server:
```
npm install
npm start
```