A website to manage prices for the ATO ORAMS panel.
The API runs at http://localhost:5000.
cd backend
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
# run app
make app_run
# tests
py.tests tests/fixtures
The frontend node server runs at http://localhost:60000.
cd frontend
npm i
# run build and watch files
npm run build:development
# run node server
npm run server:development
# tests
npm test
On local, /api
frontend calls are proxied to http://localhost:5000.