Skip to content

rerwrite backend in Rustless #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .coveragerc

This file was deleted.

120 changes: 8 additions & 112 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,114 +1,10 @@
# Created by https://www.gitignore.io/api/python
# Generated by Cargo
# will have compiled files and executables
/target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock

# Front-end related
/static/libs/
node_modules

# Mac-related
.DS_Store

# Cache from webassets
/static/.webassets-cache

# Compiled CSS from SCSS
/static/gen/app.css

# Compiled from Babel
/static/gen/app.js

### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask instance folder
instance/

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

# Vim-related
*.swp

# Test report
reports/
# These are backup files generated by rustfmt
**/*.rs.bk
4 changes: 0 additions & 4 deletions .gitmodules

This file was deleted.

9 changes: 0 additions & 9 deletions .pylintrc

This file was deleted.

15 changes: 15 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "git_playlist_backend"
version = "0.1.0"
authors = ["Tim <[email protected]>"]

[dependencies]
hyper = "*"
rustc-serialize = "0.3"
valico = "1"

[dependencies.iron]
version = "*"

[dependencies.rustless]
git = "https://github.com/rustless/rustless"
9 changes: 0 additions & 9 deletions Dockerfile

This file was deleted.

Loading