An open API service indexing awesome lists of open source software.

https://github.com/iiitv/arcadia-backend

Backend for Arcadia's website.
https://github.com/iiitv/arcadia-backend

api django django-rest-framework git github hacktoberfest python rest-api

Last synced: about 1 year ago
JSON representation

Backend for Arcadia's website.

Awesome Lists containing this project

README

          

arcadia-backend

Website for Arcadia powered by
and

# arcadia-backend

## Development 🔧

## Setup

```sh
$ git clone https://github.com/iiitv/arcadia-backend.git
$ cd arcadia-backend
```

### Installing pipenv for virtual environment

```sh
$ pip install pipenv
```

### Installing pipenv for virtual environment

```sh
$ pipenv install
```

This will automatically create a vrtual environment for you and install all the required dependencies

### For activating virtual environment

```sh
$ pipenv shell
```

### For deactivating virtual environment

```sh
$ exit
```

### Start

```sh
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
```