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.
- Host: GitHub
- URL: https://github.com/iiitv/arcadia-backend
- Owner: iiitv
- Created: 2021-09-27T06:58:39.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2023-05-09T22:38:15.000Z (about 3 years ago)
- Last Synced: 2025-03-27T17:47:00.793Z (about 1 year ago)
- Topics: api, django, django-rest-framework, git, github, hacktoberfest, python, rest-api
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 2
- Watchers: 6
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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
```