The homepage of the project is a static webpage built using ParcelJS.
Tech stack includes NodeJS (lts version recommended), ParcelJS, TailwindCSS, React, React Select.
All dependencies are listed in the package.json
file.
Clone this repo and enter the src/app
folder.
Then install all dependencies with npm i
and build the page with npm run build
.
Built files will be emitted in dist/
folder.
You can serve them locally on http://localhost:8080
running bash run.sh serve
from the root directory.
Just run the development server with npm run start
,
every changes in source code will fire a live reload of the page at http://localhost:1234.
Please note you must serve the static files in dist/api/
running bash run.sh serve
from the root directory to have a fully working application.
Available scripts:
npm run start
starts the development servernpm run clean
cleans thedist/
foldernpm run build
calls clean script and builds the page indist/
folder