Frontend code for art ordering system made with vue.js and django.
What you need to run the app.
- Node.js installed, you can check for more info on installation here.
- Yarn, a node dependency manager. To install, follow this link.
-
Clone the repository.
-
Make a
.env
file from the provided.env.example
file and paste the following valuesbaseURL=http://127.0.0.1:3000 baseAPIUrl=http://127.0.0.1:8000/api/v1/
- While at the root of the project directory, run
yarn install
to install dependencies. - After installation of the dependencies, run
yarn dev
to spin up the local development server. - Open your browser at
127.0.0.1:3000
to view the app.
DISCLAIMER: make sure that the django backend app is running as well, instructions on setup have been included at the backend README file.
For detailed explanation on how things work, check out Nuxt.js docs.