Skip to content

kaklin/eshc-intranet

Repository files navigation

Project continuing over at https://github.com/eshc/eshc-intranet

ESHC Intranet

ESHC Homepage

Heroku deployment Now redirecting to our own server

Goal

Make usable intranet.

Setup Instructions

  1. Install Python 3. Developed using version 3.5.2.
  2. Instaill virtual env pip install virtualenv. You may have to use pip3.
  3. Make a new directory in which you will work.
  4. cd into the directory and git clone <repo_url>
  5. Make new virtual environment virtualenv venv
  6. Activate virtualenv source ./venv/bin/activate on linux
  7. Install python dependencies pip install -r ./eshcIntranet/requirements.txt

Follow the instructions on setting up a postgres database if you want to set up the database in the same way it is set up on Heroku. Set it up using the settings in settings.py.

If not, you can probably just use SQLite locally, but you'll have to use the commented out database setup in settings.py.

Testing Instructions

  1. cd into eshcIntranet
  2. Run python manage.py makemigrations, python manage.py migrate, python manage.py collectstatic. In order, these set up the required changes to the database, appy the changes, and collect static files into the /static/ folder for serving.
  3. Run python manage.py runserver.
  4. Go to 127.0.0.1:8000 to access the site or 127.0.0.1:8000/admin/ to view the admin panel.
  5. To use the admin panel run python manage.py createsuperuser and follow the instructions to create an admin user.

Features implemented

  • Allauth based user management
  • User information displayed on profile page
  • Basic Wiki - based on waliki - modified uses django-wiki
  • User management available through admin app
  • Lease management - admin and user sides
  • Mark Users as deactivated when they have moved out
  • 'Share received' checkbox for admins, display on user profile
  • Style everything nicely (Bootstrap 3.3.0)
  • Navbar
  • Waliki app copied to main directory
  • Wiki change history button appears in navbar again
  • Email sending - uses finance acc uses Sendgrid now
  • Email verification/authentication - allauth
  • Store ESHC member specific information
  • Polling - can probably be later adapted to proposal voting
  • Allow user to edit relevant profile information
  • Allows users to sign up to / become members of specific working grops
  • Flat info / map
  • GM Agenda making

Leases app

  • Prompt if no valid lease registered
  • Add 'date_signed' field
  • Fill out inventory information - only allowed once

Proposals app

  • add who added it
  • add some proposal text
    • Formatting? Upload markdown? Paste markdown and render on detail page?
    • Preview of markdown before submission
  • add form for adding proposal
  • add option to remove proposal
  • List proposals currently open for voting
  • Add result to model
  • Vote counting and single vote per user
    • Display number of votes
  • Option to edit a proposal

Stretch features wanted

  • Browse bylaws - subset of wiki / or its own, non-editable section
  • User directory:
    • Shows convenors
  • Cash overview
    • Open budgets
    • Open proposals with money status
  • Moving refunds and liaisons to the intranet? Make public list of refunds?

Implementation Questions

  • mySQL? Heroku uses PostgreSQL, so maybe stick with that?
  • Deploy to web? Heroku dynos? How many would we need? It'd be nice if they don't sleep
  • Static files for wiki etc. S3 AWS recommended, requires credit card. Should cost micropennies

Notes

  • Uses bootstrap v3.3.0
  • AWS S3 for static files in production
  • Uses django-wiki
  • Uses machina (a django package) for the forum
  • Sendgrid used for email sending

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published