Missed a bunch of sandbox -> tildefriends updates.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3159 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2016-03-12 19:00:07 +00:00
parent caa7e26e5e
commit 5f25458b64
3 changed files with 7 additions and 12 deletions

View File

@ -1,4 +1,4 @@
sandboxos - An operating system for the web.
Tilde Friends - An operating system for the web.
Copyright (C) 2014 Cory McWilliams <cory@unprompted.com>
This program is free software: you can redistribute it and/or modify

View File

@ -17,16 +17,11 @@ Tilde Friends is [routinely](https://www.unprompted.com/projects/build/tildefrie
```
## Running
Running the built sandbox executable will start a web server. This is a good starting point: <http://localhost:12345/tasks>.
Running the built tildefriends executable will start a web server. This is a good starting point: <http://localhost:12345/tasks>.
To grant users administrator privileges, create a JSON file named data/auth/permissions.js containing a list of users and their permissions, like this:
```
{
"cory": ["administrator"]
}
```
The first use to create an account and log in will be granted administrative privileges. Everything can be managed entirely from the web interface.
This is a work in progress. Everything else can be managed entirely from the web interface.
This is a work in progress.
## License
All code unless otherwise noted in [COPYING](https://www.unprompted.com/projects/browser/projects/tildefriends/trunk/COPYING) is provided under the [Affero GPL 3.0](https://www.unprompted.com/projects/browser/projects/tildefriends/trunk/LICENSE) license.

View File

@ -94,9 +94,9 @@ if env['package'] and sys.platform == 'win32':
files += listAllFiles('packages')
files += listAllFiles('core')
env.Package(
NAME='SandboxOS',
target='dist/SandboxOS-win32.zip',
NAME='TildeFriends',
target='dist/TildeFriends-win32.zip',
PACKAGETYPE='zip',
PACKAGEROOT='SandboxOS-win32',
PACKAGEROOT='TildeFriends-win32',
source=files
)