Enduro
Enduro copied to clipboard
Admin Page
Is there a step by step document to setting up an enduro with an admin page anywhere?
you can find the step by step guide on how to install with the admin panel from the following URL. https://www.endurojs.com/docs/hello-world
if you are running on a Windows Machine. Make sure you go through the following steps first.
- Install windows build tools npm install --global windows-build-tools From https://www.npmjs.com/package/windows-build-tools
- Install node-gyp npm install --global node-gyp From https://github.com/nodejs/node-gyp
- Set environment variable to point to python setx PYTHON "%USERPROFILE%.windows-build-tools\python27\python.exe" From https://stackoverflow.com/questions/15126050/running-python-on-windows-for-node-js-dependencies/39648550#39648550
After you have done the above and type "enduro dev", you should be able to access the admin through the following url http://localhost:5000/admin
-Steven