Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iiitv/odyssy
Django based dynamic next generation website for IIITV
https://github.com/iiitv/odyssy
django hacktoberfest odyssy
Last synced: 2 months ago
JSON representation
Django based dynamic next generation website for IIITV
- Host: GitHub
- URL: https://github.com/iiitv/odyssy
- Owner: iiitv
- Created: 2017-05-13T17:49:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-18T12:14:15.000Z (over 1 year ago)
- Last Synced: 2024-04-17T09:02:30.900Z (9 months ago)
- Topics: django, hacktoberfest, odyssy
- Language: CSS
- Homepage:
- Size: 12.3 MB
- Stars: 19
- Watchers: 12
- Forks: 10
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Odyssy - IIIT Vadodara Website
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/2ee2f1779b2f4cacaf8ff1d7b278e10c)](https://www.codacy.com/app/singhpratyush/Odyssy?utm_source=github.com&utm_medium=referral&utm_content=iiitv/Odyssy&utm_campaign=badger)
[![Gitter](https://badges.gitter.im/iiitv/Odyssy.svg)](https://gitter.im/iiitv/Odyssy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![Build Status](https://travis-ci.org/iiitv/Odyssy.svg?branch=master)](https://travis-ci.org/iiitv/Odyssy.svg?branch=master)### Running Locally
#### Set up Database
* Install PostgreSQL (`>=9.2`)
* Log in to `postgres` user
```sh
$ sudo su - postgres
```
* Open psql shell
```sh
$ psql
```
* Create database, user and grant permission
```sql
create database odyssy;
create user odyssy with password 'odyssy';
grant all on database odyssy to odyssy;
```
* Exit to root console#### Clone project
```sh
$ git clone [email protected]:iiitv/Odyssy.git
```#### Install requirements
```sh
$ cd Odyssy
$ sudo -H pip install -r requirements.txt
```#### Migrate Database and Run
```sh
$ cd wsgi/odyssy
$ python manage.py migrate
$ python manage.py runserver
```#### Note:
```
Don't delete/change the existing migration files.
Upload the migration files of your app in your PR.
```