mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
Update README
This commit is contained in:
parent
9b60347282
commit
c62f0cfa72
@ -1,6 +1,4 @@
|
|||||||
% PLINTH(1) Version 0.1 | Plinth User Manual
|
% Plinth User Manual
|
||||||
%
|
|
||||||
% February 2011
|
|
||||||
|
|
||||||
# Introduction
|
# Introduction
|
||||||
|
|
||||||
@ -8,10 +6,6 @@
|
|||||||
|
|
||||||
plinth - a web front end for administering every aspect of a Freedom Box.
|
plinth - a web front end for administering every aspect of a Freedom Box.
|
||||||
|
|
||||||
## Synopsis
|
|
||||||
|
|
||||||
plinth.py
|
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
The Freedom Box is a net appliance conceived by Eben Moglen. It
|
The Freedom Box is a net appliance conceived by Eben Moglen. It
|
||||||
@ -45,10 +39,14 @@ servers. Basic users should never even know those options exist.
|
|||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
See the INSTALL file for additional details. Run:
|
See the INSTALL file for additional details and dependencies. To install run:
|
||||||
|
|
||||||
$ make
|
$ sudo python setup.py install
|
||||||
|
|
||||||
Once make finishes, run Plinth on the local system with:
|
Run Plinth on the local system with:
|
||||||
|
|
||||||
$ bash start.sh
|
$ sudo plinth
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
See the HACKING file for contributing to Plinth.
|
||||||
@ -40,7 +40,11 @@ oneline.txt: Makefile
|
|||||||
|
|
||||||
$(SOURCES):
|
$(SOURCES):
|
||||||
@rm -f $@
|
@rm -f $@
|
||||||
@ln -s ../$(patsubst %.mdwn,%,$@) $@
|
if [ -f ../$(patsubst %.mdwn,%.md,$@) ]; then \
|
||||||
|
ln -s ../$(patsubst %.mdwn,%.md,$@) $@; \
|
||||||
|
else \
|
||||||
|
ln -s ../$(patsubst %.mdwn,%,$@) $@; \
|
||||||
|
fi
|
||||||
|
|
||||||
../TODO : $(TODO_SOURCES) Makefile
|
../TODO : $(TODO_SOURCES) Makefile
|
||||||
grep -ro --exclude=.git* --exclude=plinth.1 --exclude=*.tex --exclude=*.html \
|
grep -ro --exclude=.git* --exclude=plinth.1 --exclude=*.tex --exclude=*.html \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user