Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mikaelm1/jobsite
- Owner: mikaelm1
- Created: 2017-07-31T22:33:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-16T20:42:46.000Z (over 7 years ago)
- Last Synced: 2024-11-11T17:48:37.770Z (3 months ago)
- Language: Python
- Homepage:
- Size: 847 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```