Code Monkey home page Code Monkey logo

eventures's Introduction

Eventures C# App + RESTful API + Desktop Client + Android Client

Sample apps for demonstrating how to implement continuous integration and build a CI/CD pipeline with GitHub Actions.

  • Target platform: .NET 5
  • CI system: GitHub Actions
  • Seeded database with one user and three events
  • Default user credentials: guest / guest

Eventures Web App

The ASP.NET Core app "Eventures" is an app for creating events.

  • Technologies: C#, ASP.NET Core, Entity Framework Core, ASP.NET Core Identity, NUnit
  • The app supports the following operations:
  • Home page (view events count + menu): /
  • View events: /Events/All
  • Create a new task (name + place + start date + end date + total tickets + price per ticket): /Events/Create
  • Edit event: /Events/Edit/:id
  • Delete event: /Events/Delete/:id

Eventures RESTful API

The following endpoints are supported:

  • GET /api - list all API endpoints
  • GET /api/events - list all events
  • GET /api/events/count - returns events count
  • GET /api/events/:id - returns an event by given id
  • POST /api/events/create - create a new event (post a JSON object in the request body, e.g. { "name": "Open Fest", place": "Borisova Garden", start": "2022-08-14T10:00:00.000Z", "end": "2022-08-15T18:00:00.000Z", "totalTickets": 500, "pricePerTicket": 15 })
  • PUT /api/events/:id - edit event by id (send a JSON object in the request body, holding all fields, e.g. { "name": "Open Fest", place": "Borisova Garden", start": "2022-08-14T10:00:00.000Z", "end": "2022-08-15T18:00:00.000Z", "totalTickets": 500, "pricePerTicket": 15 })
  • PATCH /api/events/:id - partially edit event by id (send a JSON object in the request body, holding the fields to modify, e.g. { place": "South Park Sofia", "pricePerTicket": 12 })
  • DELETE /api/events/:id - delete event by id
  • GET /api/users - list all users
  • POST /api/users/login - logs in an existing user (send a JSON object in the request body, holding all fields, e.g. {"username": "username", "password": "pass123"})
  • POST /api/users/register - registers a new user (send a JSON object in the request body, holding all fields, e.g. {"username": "username", "email": "[email protected]", "password": "pass123", "confirmPassword": "pass123", "firstName": "Test", "lastName": "User"})

Desktop Client

Windows Forms client app for the Eventures RESTful API.

  • Technologies: C#, .NET 5, Windows Forms, RestSharp

Android Client

Android mobile app client for the Eventures RESTful API.

  • Technologies: Java, Android SDK, Retrofit HTTP client
  • Platform: Android

Screenshots

Screenshots from the Eventures apps.

Eventures Web App

image image image image

Eventures RESTful API

image image image

Desktop Client

Screenshot_39 Screenshot_41 Screenshot_40 image Screenshot_43

Android Client

Screenshot_25 Screenshot_26 Screenshot_27 image Screenshot_31

eventures's People

Contributors

nakov avatar evandonova avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.