Table of Contents
Dealscan is car offers aggregator, written in Django with use of Alpine.js and HTMX. It makes you as a car dealer faster. Project is open source, check out the Roadmap and Contributing section to see how you can help.
Checkout the demo or host it yourself.
If you don't want to host it yourself, you can use the hosted version at dealscan.io.
This is an example of how to setup dealscan locally. To get a local copy up and running follow these simple example steps.
This is an list of things you need to use the software for development purposes and how to install them.
- Install Docker and Docker-compose
- Clone repository
git clone https://github.com/style77/dealscan.git
andcd dealscan
- Run
cp .env.example .env
and fill in the environment variables - Go back to the root directory with
cd ..
and runmake run
to start the development API environment (this will take a while)
Coming soon...
All the following steps are done on the VPS. You should have a user with sudo privileges and a ssh key and ubuntu 20.04/debian installed.
- Install Docker and Docker-compose
- Clone repository
git clone https://github.com/style77/dealscan.git
andcd dealscan
- Run
cp .env.example .env
and fill in the environment variables, or set up the environment variables manually withexport
- Run
docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d
6*. You can also set up NGINX with the following configuration or just set your domain to the IP of the VPS and the port of the API (8000):
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
- More sources
- More filters
- More tests
- More documentation
- subscription management
- password change
- more account settings
- support
- notifications (email, telegram, sms)
- translations
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. See CONTIBUTING
for more information.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the CC BY-NC-ND License. See LICENSE
for more information.
Joachim Hodana ([email protected])
Project Link: https://github.com/Style77/dealscan