GithubHelp home page GithubHelp logo

revamp's Introduction

REVAMP

REVAMP is an app based on an Excel spreadsheet app produced by Kim Andersson ( https://www.sei.org/people/kim-andersson/ ) and Daniel Ddiba ( https://www.sei.org/people/daniel-ddiba/ ). The spreadsheet is in the handover folder on the shared drive.

More info on the project can be found here: https://www.sei.org/projects-and-tools/tools/revamp/

The tool is currently housed on Heroku at: http://revamp-dev.herokuapp.com/

The Heroku dashboard is: https://dashboard.heroku.com/apps/revamp-dev

It was originally agreed to host it on Heroku but it appears that there may not be funding for hosting so it may be moved to the university's IT services.

Development Environment

Revamp is a standard Django app (Django 2.1.7/Python3.6). It comprises of the tool itself and a few extra pages for information that are managed using the wagtail CMS.

To install on an Ubuntu server:

sudo apt-get update
sudo apt-get install software-properties-common
sudo apt-add-repository universe
sudo apt-get install libpq-dev
sudo apt-get update
sudo apt-get python-pip
sudo apt-get install python3-venv
sudo snap install --classic heroku
python 3 -m venv ../revamp_env
source ../revamp_env/bin/activate
sudo apt-get install postgresql postgresql-contrib
update-rc.d postgresql enable
service postgresql start
sudo su - postgres
psql
create user revamp password ‘revamp’;
grant all privileges on database revamp to revamp;
alter user revamp createdb;  

Clone code:

git clone https://gitlab.com/SEI-York/revamp
cd revamp
pip install -r requirements.txt
python manage.py createsuperuser
python manage.py migrate
python manage.py runserver

revamp's People

Contributors

davidgillies avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.