-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,46 @@ | ||
bureau_manager | ||
============== | ||
================== | ||
Gestione delle segreterie della Route Nazionale 2014: | ||
- segreteria centrale | ||
- segreterie sottocampo | ||
- segreteria OneTeam | ||
|
||
Installazione | ||
============= | ||
Requisiti: | ||
|
||
* virtualenv (consigliato ma non obbligatorio) | ||
* python 2 | ||
* django 1.7 | ||
|
||
Procedura di installazione: | ||
|
||
```sh | ||
sudo apt-get install virtualenvwrapper | ||
mkvirtualenv rn-bureau_manager | ||
git clone [email protected]:route-nazionale/bureau_manager.git | ||
cd bureau_manager | ||
pip install -r requirements.txt | ||
cp bureau_manager/settings_dist.py bureau_manager/settings.py | ||
``` | ||
|
||
Per avviare il server di sviluppo, non adatto per il deploy: | ||
|
||
```sh | ||
# per entrare nel virtualenv | ||
workon rn-bureau_manager | ||
cd bureau_manager | ||
python manage.py runserver | ||
|
||
# per uscire dal virtualenv | ||
deactivate | ||
``` | ||
|
||
Il repository contiene un DB sqlite che ha dentro alcuni dati di test. | ||
|
||
Per visualizzare e modificare i dati, utilizzate la comoda interfaccia di admin di django. | ||
|
||
http://localhost:8000/admin | ||
|
||
Potete accedere con nome utente 'admin' e password 'admin' | ||
|
||
This software will help to organize the central bureau, the access bureau and OneTeam bureau |