A simple front-end admin application for speckle. Demo: check it out live here!
Speckle v1 has reached EOL and is no longer mainatined. Check out our brand new 👉 Speckle v2! Read more about the announcemnt here and check out or new website.
The easiest way to use SpeckleAdmin is to navigate to https://app.speckle.systems and login at your server. Data will strictly be transferred between the client (the app in your browser) and your server. This works within private networks, amongst firewalls, etc. as long as you have a SSL certificate for your server (ie, non-https server adresses will not work).
cd ~/${your speckle server install location}/plugins
git clone https://github.com/speckleworks/SpeckleAdmin.git
cd SpeckleAdmin
npm install
npm run build
- Restart your server, and navigate to its root address - done!
If you have previously installed the SpeckleAdmin frontend plugin, you should be able to just run the following commands from the plugin's folder (e.g., ~/${SpeckleServer Installation Folder}/plugins/SpeckleAdmin
).
git fetch
git pull
npm install
- to make sure to pull along any potential new dependenciesnpm run build
- Profit!
the build step can fail on low powered VMs with < 1GB of RAM. There's two solutions to this: (a) get a beefier VM (or scale it up for this step), alternatively (b) use https://app.speckle.systems.
To start a development server: npm run dev
To build for production: npm run build
MIT