Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mikaelm1/jobsite

A job board app
https://github.com/mikaelm1/jobsite

Last synced: about 1 month ago
JSON representation

A job board app

Awesome Lists containing this project

README

        

# Job App

A job board built with Django.

## Getting Started with Docker
Need to have Docker installed. Change `.envexample` to `.env` and make sure the password and user match those found in `settings.py`.

#### Running the app
```
docker-compose up --build
```

#### Running migrations
```
$ docker-compose exec web python src/manage.py makemigrations
$ docker-compose exec web python src/manage.py migrate
```

#### Adding an app
```
$ docker exec -it [CONTAINER_ID] bash
$ cd src
$ python manage.py startapp [APP_NAME]
$ exit
```