Files
old-web/README.md

21 lines
521 B
Markdown
Raw Normal View History

2019-05-16 17:12:17 +02:00
# MarketAlert
2019-01-08 16:50:46 +00:00
2019-03-26 05:06:15 +01:00
The purpose of this project is to build a web application that enables subscribing to notifications when new products are published on various ad based marketplaces. The MVP will be only based on OLX.ba
2019-05-16 21:34:32 +00:00
### Setup
2019-05-16 17:12:17 +02:00
1. Create postgres docker image
`docker build -t marketalerts .`
2. Run postgres image with
`docker run --name pg_marketalerts -d -p 5432:5432 marketalerts`
2019-05-15 15:27:10 +02:00
2019-05-16 17:12:17 +02:00
3. Install packages
`npm install`
2019-05-16 17:12:17 +02:00
4. Run migrations from `app` folder
`npx sequelize db:migrate`
2019-05-15 15:27:10 +02:00
2019-05-16 17:12:17 +02:00
5. Run app
`npm start`