#
Slatebox App Development
#
Quickstart
Note this guide is to install and run Slatebox on your own development machine. If you want to host on your server, it is recommended that you follow the docker installation guide.
Want to run Slatebox with the source code? This assumes a Linux environment - 5 easy steps:
npm install -g meteor
git clone [email protected]:Slatebox/slatebox.git
cd slatebox/web/app
meteor npm install
npm run start
And boom, you should see => App running at: http://localhost:3000/
in your command line. Navigate there, and you will have Slatebox running on your machine, ready for local development. 💪
#
Environment Variables
Environment variables can be set to extend Slatebox's functionality, but they are not necessary (the quickstart above does not set them). The environment variables available are the same as when running Slatebox via Docker:
Set whichever environment variables you'd lik to enable (e.g., export PIXABAY_API_KEY='xyx'
), then restart the app with npm run start
.