Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/creyd/asiimov
A free, intuitive, open source Steam item trading platform.
https://github.com/creyd/asiimov
csgo gaming hacktoberfest steam steam-api trading
Last synced: about 1 month ago
JSON representation
A free, intuitive, open source Steam item trading platform.
- Host: GitHub
- URL: https://github.com/creyd/asiimov
- Owner: creyD
- License: mit
- Created: 2020-01-02T19:27:08.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-25T20:48:12.000Z (over 1 year ago)
- Last Synced: 2023-07-25T22:12:17.793Z (over 1 year ago)
- Topics: csgo, gaming, hacktoberfest, steam, steam-api, trading
- Language: Python
- Homepage:
- Size: 90.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Asiimov (ON HOLD)
**Note: This project is currently on hold as I couldn't find a reliable API for the Steam inventory.
Valve itself doesn't provide one and most of the APIs out there work by getting the original Website
and converting it, which isn't very reliable as this would depend on Valve never changing the site.****Note 2: If somebody still would like to take the time to finish this, they may contact me.**
A free, intuitive, open source CS:GO item trading platform.
## Goals
- (done) You can authenticate with your steam account
- Site gets your items automatically on the press of a button
- You can create 'offers' using your items as a base
- A border colour indicates if the item is still in your inventory
- You can manually renew an offer page to check if the item is still in the inventory
- You can send trade offers (preferably with the items preselected or even completely automated)
- You have a profile with some badges to get your profile semi verified (email, trade link...)
- Everything is available for free
- Items should be displayed with: Item ID, Inspect Link, Pattern Index (...) NO PRICES!
- Simple user design, minimalistic, less pages more features
- (optional) You can mark your inventory items as "for trade" or "holding on to this"Additional features and goals will be tracked in this repositories issues.
## Pages
- Home Page (w/ live feed of created offers)
- `/offer/` - Offer page (for each offer)
- `/offer//refresh` - Refreshes offer page
- `/profile/` - Profile page for badges, confirmed trades (...)
- `/profile//inventory` - Inventory page
- `/profile//settings` - Personal settings
- `/search/` - Offer Search/ Filter
- `/create` - Create offer## Setup Testing Environment
1. Clone repository
2. Set up [virtualenv](https://virtualenv.pypa.io/en/latest/)
3. Install dependencies with `pip install -r requirements.txt`
4. Migrate database scheme `python manage.py migrate`
5. Run the test server `python manage.py runserver`## Branching
We use a pretty simple and intuitive branching structure:
- `master` - Contains deployable code where everything is tested and tagged to the latest version
- `dev` - Contains the latest version of seemingly stable code, pull requests will be collected and tested here
- `hotfix-X` - Is a branch where security or major issues are worked on, they will be merged into `master` and `dev`
- `feature-X` - Is a branch where a specific feature is worked on, will be merged into `dev`If you fork this repository and want to help us you will most likely work in the `dev` branch and create a pull request from your `dev` to our `dev`.
## Contribution Guide
See the `CONTRIBUTING.md`